Another trick to login bypass

This method is one of the more advanced SQL Injection methods. There are three steps.First, we have to generate an error so that we can see the table names (so that we can create a privileged account). Next we have generate a slightly different error to gain another important table name. Finally, we will inject SQL in order to create a new administrator account.

To accomplish our first goal we will inject something like the following:

Username: ‘Having1=1–

Enter this and leave the password field blanks. Once this is injected we will, hopefully, receive an error message that will reveal a table name. We are hoping to get an error such as this:

Column user_member.user_id is invalid and was not found etc.

The error will be longer than that but all we really need is the table name.
user_member.id’. Next, we will inject some SQL so that we can produce yet another error. Like so:

UNION SELECT * FROM user_member WHERE USER_ID=‘admin’ GROUP BY USER_ID HAVING 1=1;–

Now we have generated another error. The error may look something like the following :

Column user_member.user_id is invalid and was not found… Column user_member.passwd is invalid and was not found etc.

The above example shows us that there user_member.passwd holds the passwords. We will now attempt to create another user, thus gaining us privileges. Use the bellow code in the Username field to insert the user :

‘INSERT INTO user_member (USER_NAME, LOGIN_ID,PASSWORD, CREATION_DATE) VALUES(‘Ethernet’,’hacked’,’hacked’,GETDATE();–

Success! We can now login with the username ‘Ethernet’ and the password ‘hacked’.Please note that the errors have been shortened down and everything simplified for the purpose of this post.

:D :D

SSLDump, Webmitm and Arpspoof the trio SSL sniffing

Transport Layer Security (TLS) and its predecessor, Secure Sockets Layer (SSL), are cryptographic protocols that provide secure communications on the Internet for such things as web browsing, e-mail, Internet faxing, instant messaging and other data transfers. There are slight differences between SSL and TLS, but they are substantially the same

Sniffing SSL ? Read More…

Both of Arpspoof and Dsniff teach a basic sniffing

This one will tell how to sniffing a local area network,we will catch all package that flow at that network.sound Frightening huh…but it very easy… this is one simpel example how it works.in Local Area Network when your computer ping a other computer like “ping [IP target]” it will send it to all the computer in one subnet with it. and ask if there are the IP he asked. and when he get the replay so it will report to you like “64 byte from bla..bla..” that confirm if the IP you ask is ON or not. so what is sniffing is Read More…

Play fun with samba to hack netbios

This is another way to hacking windows box. especially for hacking our local area network.this post will show us how to hack a windows netbios share at our network. The first step in exploring remote shares is to find computers that are offering open shares. For this purpose we’ll use NMAP. Read More…

Just two lines can obtain the root of linux machine

I will present a very easy but effective way to obtain a root account on a linux machine having a boot loader badly configured.

Sometimes [Often], in school classes, admins forget to protect grub with a password, so we will explore this weakness. Read More…

Playing with command prompt to config xp firewall

net stop sharedaccess stop the default firewall
netsh firewall show show/config default firewall
netsh firewall set notifications Read More…

Other way to gaining access on windows xp

So you want to change something super-critical in registry or want to see what’s in the System Restore folder? Here’s the tutorial.

Break subscribtion only areas with user agen switcher

Ocassionally you may come across a site on google, click the link to read the article and be presented with a log in page. To register for just one article is too much hassle. Read More…

IPC$ Share Null Session Exploit

What is the IPC$ share exploit and how to exploit it…

What is the IPC$ Share?

IPC stands for Inter-Process Communication. This share is used for data sharing between applications and computers. With this share a hacker can take total control of a PC. Read More…

Howto:Install a full bootable version of BackTrack2 on a USB Stick

1. Open the backtrack.iso file:

Option 1. In Windows, use a program such as isobuster
Option 2. In Backtrack, mount the iso ; (mount -o loop -t iso9660 yourcd.iso /mnt/iso)
Option 3. In OSX, mount the iso Read More…