Showing posts with label Best Tools. Show all posts
Showing posts with label Best Tools. Show all posts

Saturday, 8 March 2014

How to show connected devices


USBDeview is a small utility that lists all USB devices that currently connected to your computer, as well as all USB devices that you previously used.


For each USB device, extended information is displayed: Device name/description, device type, serial number (for mass storage devices), the date/time that device was added, VendorID, ProductID, and more...

USBDeview also allows you to uninstall USB devices that you previously used, disconnect USB devices that are currently connected to your computer, as well as to disable and enable USB devices. 


You can also use USBDeview on a remote computer, as long as you login to that computer with admin user.

Saturday, 14 December 2013

Hide text in image files simple


Sometimes when you want to send secret messages to your friends you would be looking for the most unsuspicious way. Here is a great trick to send text in an image file. Using a simple HTML application to hide the text into the image file according to the password you provide you can send secret messages to your friends. Both you and your friend should have the program and must know the password.
To make the HTML application file paste the following code into notepad and save with a .htaextension.
<html>
<head>
<title>Ceh.Fida</title>
<HTA:APPLICATION
  APPLICATIONNAME="Ceh.Fida"
  ID="Ceh.Fida"
  VERSION="1.0"
  MAXIMIZEBUTTON="no"
  SCROLL="no"/>
</head>

<script language="VBScript">

Sub Window_OnLoad
Dim width,height
width=500
height=510
self.ResizeTo width,height
End Sub

Function Validate()
If Not (IsNumeric(key.value)) Then
X = MsgBox("The password must be a number between 1000 and 9999!", 48, "ERROR!")
Else If (key.value < 1000 Or key.value > 9999) Then
X = MsgBox("The password must be a number between 1000 and 9999!", 48, "ERROR!")
Else If (box.value = "") Then
X = MsgBox("Enter the text to hide!", 48, "ERROR!")
Else If (xbox.value = "") Then
X = MsgBox("Enter the image file path!", 48, "ERROR!")
Else
FileMng()
End If
End If
End If
End If
End Function

Function FileMng()
Set fs = CreateObject("Scripting.FileSystemObject")
path = xbox.value
If Not (fs.FileExists(path)) Then
X = MsgBox("The specified file does not exist!", 48, "ERROR!")
Else
WriteFile()
End If
End Function

Function WriteFile()
Set fs = CreateObject("Scripting.FileSystemObject")
Set a = fs.CreateTextFile("XBText.txt")
a.WriteBlankLines(2)
a.WriteLine("--- XBYTE ---")
a.WriteLine(key.value)
a.WriteLine(box.value)
a.Close
WriteBatch()
End Function

Function WriteBatch()
Set fs = CreateObject("Scripting.FileSystemObject")
Set WshShell = CreateObject("WScript.Shell")
Set a = fs.CreateTextFile("XBBatch.bat")
a.WriteLine("copy /b " & Chr(34) & xbox.value & Chr(34) & " + XBText.txt XBSecret.jpg")
a.Close
DeleteFiles()
End Function

Function DeleteFiles()
Set fs = CreateObject("Scripting.FileSystemObject")
Set WshShell = CreateObject("WScript.Shell")
X = WshShell.Run("XBBatch.bat",, True)
X = fs.DeleteFile("XBBatch.bat", True)
X = fs.DeleteFile("XBText.txt", True)
X = MsgBox("The text has been embedded into XBSecret.jpg!", 64, "Success!")
End Function

Function AValidate()
If Not (IsNumeric(akey.value)) Then
X = MsgBox("The password must be an integer between 1000 and 9999!", 48, "ERROR!")
Else If (akey.value < 1000 Or akey.value > 9999) Then
X = MsgBox("The password must be an integer between 1000 and 9999!", 48, "ERROR!")
Else If (abox.value = "") Then
X = MsgBox("Enter the path for the image file!", 48, "ERROR!")
Else
AFileMng()
End If
End If
End If
End Function

Function AFileMng()
Set fs = CreateObject("Scripting.FileSystemObject")
If Not (fs.FileExists(abox.value)) Then
X = MsgBox("The specified file does not exist!", 48, "ERROR!")
Else
FindHeader()
End If
End Function

Function FindHeader()
On Error Resume Next
Set fs = CreateObject("Scripting.FileSystemObject")
Set a = fs.OpenTextFile(abox.value)
Do Until (text = "--- XBYTE ---" Or Err.Number <> 0)
text = a.ReadLine()
Loop
If (text = "--- XBYTE ---") Then
pass = a.ReadLine
CheckPass(pass)
Else
X = MsgBox("The file does not contain hidden data!", 48, "ERROR!")
End If
End Function

Function CheckPass(pswd)
If (akey.value = pswd) Then
Retrieve()
Else
X = MsgBox("Incorrect password!", 48, "ERROR!")
End If
End Function

Function Retrieve()
On Error Resume Next
Set fs = CreateObject("Scripting.FileSystemObject")
Set a = fs.OpenTextFile(abox.value)
Do Until (text = "--- XBYTE ---" Or Err.Number <> 0)
text = a.ReadLine()
Loop
text = a.SkipLine()
Set x = fs.CreateTextFile("XBText.txt")
Do Until (Err.Number = 62)
text = a.ReadLine
If Err.Number = 0 Then x.WriteLine(text)
Loop
X = MsgBox("The retrieved text has been saved to XBText.txt!", 64, "Success!")
End Function

</script>

<body bgcolor="white">
<table align="center" width="450">
<caption><hr><b>Ceh.Fida</b><hr>www.checkingtricks.blogspot.com<hr><br><a href="https://www.facebook.com/CEH.Fida">My Facebook ID</a><hr></caption>
<tr>
<td align="center">Password: <input type="text" id="key" size="4" maxlength="4"></td>
</tr>
<tr>
<td align="center"><textarea style="width: 450; height: 150;" id="box"></textarea></td>
</tr>
<tr>
<td align="center">Image path: <input type="file" id="xbox" size="40"></td>
</tr>
<tr>
<td align="center"><input type="button" value="Hide" onclick="Validate()" style="width: 450; height: 40;"></td>
</tr>
<tr>
<td align="center"><hr><br>Password: <input type="text" id="akey" size="4" maxlength="4"></td>
</tr>
<tr>
<td align="center">Image path: <input type="file" id="abox" size="40"></td>
</tr>
<tr>
<td align="center"><input type="button" value="Retrieve" onclick="AValidate()" style="width: 450; height: 40;"></td>
</tr>
</table>
</body>
</html>
Also you can download the executeable version of the program here: Download
Open the program and you will see a text box for password, a text area for the text, a text box for entering the path for the image file and a button labeled Hide. Fill in the fields. The password should be an integer between 1000 and 9999, the text area contain the text you want to hide. Enter the path for the image file you want to hide the text into. Eg:C:\Users\XByte\Documents.Secret.jpg. After that press the hide button. Now a new jpg file namedXBSecret.jpg will appear in the directory of the program. This file will containing the stored text. Send it your friends!
Now to retrieve the text from an image, open the program. You will see a password field and a text box for the image path as well as a Retrieve button in the lower part of the window. Enter the password and the image path. The program will tell you if the image does not contain hidden data or whether the password is incorrect. If you filled in all the fields correctly a new text file namedXBText.txt will be created in the same directory as the program and will contain the recovered data.
WARNING: The data in the image file will be lost if you edit it with any picture editing program!
Remember to like and share this post. Subscribe to the blog for more great tricks.

Sunday, 15 September 2013

Pastebin Poster - Pastebin Posting Tool



















In this blog post i am going to show you my latest tool: Pastebin Poster.
Pastebin poster is a tool coded by Andy Linux which makes it easier for you to create and make new pastes on pastebin.com . It has a very friendly user interface which makes it very easy to use (as all of my programs) and it doesn't affect your system performance at all.
How to use this tool ?
1.Enter the paste name
2.Select the paste exposure (Public/Unlisted/Private)
3.Select the paste expire date (Never / 10 minutes / 1 hour / 1 day/ 1 week / 2 weeks / 1 month)
4.Enter the text content in the bix textbox
5.Click on submit
6.Your paste link will be shown on the textbox at the botton part of the program.
Supported OS: All Windows Operating Systems

Postimage.org Uploader - Postimage.org Uploading Tool!

In this blog post i am going to introduce you to my latest tool!
Postimage.org Uploading Tool. The name says it all, however for the people who haven't heard of Postimage i am making a short description.

What Is Postimage.org - Short Information

Postimage is a very simple, fast, reliable free image host. It's perfect for linking to auctions, message boards, blogs, and other websites. Postimage guarantees maximum uptime and performance so your image will be here whenever you need it. There is no registration or login, all you have to do is submit your picture. With continuous upgrades and dedicated staff Postimage is the #1 solution for Free Image Hosting.

About the tool

The tool is coded by Andy Linux and provides a simple and a faster way to upload images on postimage.org . It is very simple to use because of its friendly user interface. What you have to do is just doubleclick on the tool to open it, enter the image file name (example: mypic.png) and click on upload. After the uploading process finished the link of the uploaded image will be automatically opened on your browser.



Visit http://w-coder.blogspot.com for more!

Saturday, 14 September 2013

Change Window drive image!!!

Hello guys Today I give you a simple tool but very helpful  you to change your windows drive background,His name is Drive Background Changer.
Isn't it cool to have great wallpaper for your desktop but it might be more fun to have amazing background images for your drives. Drives Background Imageis a Windows freeware application that allows you to set a wallpaper for each disk drive on your computer. This program is very easy to use you only need to select wallpaper for your background, it also provide option to change icons of your drives, changing text color and it provide instant preview of your selected settings. But  keep in mind that Windows 7 users need administrator privileges while running this program, as the application attempts to modify the configuration of the local hard drives..You just follow my steps.
1. Download Drive Background Changer.

2. Run It as administrator.Now A new window pop up as shown below.


   Features of the program:

  • Autodetect Available Drives
  • Set Background To Multiple Drives
  • Remove Background From Multiple Drives
  • Set Icons To Multiple Drives
  • Remove Icon From Multiple Drives
  • Auto Recover Default Icons
  •  Events Log
  • Drive Preview
  • Icon Preview
  • Easy Clean GUI


Wednesday, 11 September 2013

Adfoc.us Shortener


Have you ever given a very loooooong url to a friend of yours and you wanted it to be much much shorter ?
Aren't long urls ( except long ) , really annoying?
I am presenting the solution to you. Its the latest program i (Andy Linux) coded.
It is called Adfoc.us Shortener and it is a very useful URL Shortening Program.
So you might ask what does this program do? 
Well Adfoc.us Shortener generates a short adfoc.us link for long urls.
It is extremely easy to use because of its very friendly user interface.
How to use it? - Two simple Steps
1. Enter the long url in the first textbox
2.Click on Shorten URL and that's it, the shortened adfoc.us url will be generated on the second textbox.
Copy it and share it with your friends.
Supported OS: All Windows Operating Systems

Monday, 9 September 2013

Text Encoding Tool!

Text Encoder is a Text Encoding Tool which gives you the oportunity to encode text into several encoding types including: ASCII, Hex, Base64, Binary and MD5. How to use it?
Firstly you enter your text into the first textbox and then click on the encoding type.
You will get the result (the encoded text) into the second textbox.

 


Website Status Checker

There are some times when you visit a website and you get Google Chrome Could not connect to website.com . In case you want to verify if its really offline, or it is only showing this to you, this is the perfect tool to use!

My public Ip

Whats my Public IP is a program used to find your public IP Address.This program is very easy to use, the only thing you have to do is clicking on Get IP and you will get your public IP on the textbox.


Web Blocker 2.2
















Web Blocker is a website blocking tool which allows you to block any website you want from being opened to your PC. You can use it to block social networking sites like Twitter , Facebook, also unappropriate websites from your children.
Features:
#Block Single/Multiple Websites
#Unblock Single/Multiple Websites
#Display Blocked Websites On Your Computer

It has a friendly user interface and it is very easy to use:
1.Run as Administrator
2.Enter the list of websites in the first textbox
3.Choose your action block/unblock
4.In order to display the blocked websites click on refresh list.

It doesn't slow down your computer at all.
Supported Operating Systems: Win 2000/ Xp / Vista / Windows 7 / Windows 8

Download Link 1

Mass Email Sender












Mass Email Sender is a free tool coded by Andy Linux that gives the user the oportunity to send the same email to more than one person.
How to use it?
1.Enter the emails of all the targets on emails.txt
2.Open the Mass Email Sender
3.Enter your Gmail account + password
4.Enter Subject
5.Enter the Message

Mass Email Sender is very easy to use and it doesn't affect your system performance at all.
You can even minimize it to the background and do something else while he sents the emails and gets the work done for you.
Supported Operating System: Win 2000/XP/Vista/ Windows 7 / Windows 8

Winstaller

WInstaller is a simple python script used to install some important tools on linux very easily.
What you have to do is very simple. Just choose what tool you want to install and let the script do the rest for you....
How to use it? Open terminal and type:
chmod +x winstaller.py
./winstaller.py
Supported Operating Systems: All Linux Distributions
Here is a screenshot of the tool:

Faceb0ok Like to Download Button Cre@tor











Ever wanted to download a file and saw that you had to hit the like button in order to download that file?
Did you want to know how to do that ?
Well here is the solution. I have created an application that will do the job for you - Facebook Like To Download Button Creator.
How to use it?
1.Enter the url of the file that the user will download in the first textbox
2.Enter the url of your facebook page
3.Click on Get HTML Code
4.Copy that code and put it into your post and there your go.
In order to download the specified file, the user has to first like your page!
Using Like To Download Buttons is a very good way to increase likes instantly to your facebook fanpage!
Supported Operating Systems: Windows 2000 / XP / Vista / Windows 7 / Windows 8

IP2Hostname


IP2Hostname is an application coded by Andy Linux (me) which will give you the hostname for a specific IP.
It is a very simple to use application and it doesn't affect your system's performance at all because it uses only 2-4 megabytes of RAM.
How to use IP2Hostname?
As i previously said, it is extremely easy to use, the only thing you have to do is enter the IP address in the first textbox and then click on Get hostname .
I hope you will like this tool!
Supported OS: All Windows Operating Systems

Bas!c Shell Comm@nds for Linux Newbies

The basic commands are the ones that you have to know in order to trot around on Linux. These can further be divided into a few sub sections.

Directory Commands
pwd: Used to print a working directory
mkdir: Used to make directories
cd: It stands for ‘Change Directory’
rmdir: For removing a directory.

File Commands

ls: This lists the contents of a directory.
rm: This removes files from a directory.
cp: It copies files from a source directory to the target directory.
mv: It moves the file to a target.
cat: This command reads one or more files and then prints them to the standard output.
cmp: This command compares two files byte by byte.
wc: This command prints the number of bytes, new lines and words in a file.
du: This command gives an estimation of the disk usage by each file and recursively for directories.
find: This command searches for a file in the directory.
grep: Print the lines that match a particular pattern.
sort: Sort the lines in text files.

Editor

‘Vim’ is an advanced and more useful text editor than the ‘Vi’ editor. There are also other text editors such as nano, vi, kate, KDE and gedit.

For example, vim filename

User Account

While working on the ‘root’ account, one needs to be very careful. Managing user accounts and groups is one of the most important parts of a system administrator’s task.

When as an admin, you’re given a particular scenario, you must know how to manage the various accounts that are involved. Here are some commands that help,

useradd: Creating a user account. This command can be executed only by administrators.
passwd: Changing password for a user. The user will be asked for the old password, but administrators can bypass this step.
usermod: This command is used to modify a user account.
userdel: This command is used for deleting an user account and files related to it.
groupadd: Creating a new group.
groupdel: This one deletes a group and entries referring to it.
groupmod: This command is used to modify a group.
chown: Use this when you want to change the owner of a file.
chgrp: Changing the ownership of a group.

Network Commands

It is important to know the commands for checking IP address, getting DNS and for downloading files from the internet.

wget: This is a non-interactive network downloader. When a download fails due to network problems, this keeps retying until the entire file has been downloaded.
ping: This one sends an ICMP echo request to all network hosts. The sender gets an ICMP packet if the host is responding.
hostname: This is used to set or show the host name for the system.
dnsdomainname: This is for showing the DND domain name of the system.
netstat: This command displays the status of different ports.
ifconfig: This command can be used to get the subnet mask and IP address of a network. Plus, you can use it to configure a particular network.

There are other commands that you need to know too, but this will get you started. Further categories are also made for Linux commands.

Adfly Shortener(URL Sh0rtening Progr@m)


Have you ever given a very loooooong url to a friend of yours and you wanted it to be much much shorter ?
Aren't long urls ( except long ) , really annoying?
I am presenting the solution to you. Its the latest program i (Andy Linux) coded.
It is called Adfly Shortener and it is a very useful URL Shortening Program.
So you might ask what does this program do? 
Well Adfly Shortener generates a short adf.ly url like this one: http://adf.ly/U2HZe for long urls.
It is extremely easy to use because of its very friendly user interface.
How to use it? - Two simple Steps
1. Enter the long url in the first textbox
2.Click on Shorten URL and that's it, the shortened adf.ly url will be generated on the second textbox.
Copy it and share it with your friends.
Supported OS: All Windows Operating Systems

Hash Generating Tool















Hash Generator is a hash generating tool, which means that you enter a string of text and it gives you this text encrypted in many encryptions. Have you ever wondered how can you encrypt your passwords so that others won't understand it ? This is the right tool for you to use. Hash Generator supports the following encryptions:
1.MD5
2.SHA1
3.SHA224
4.SHA256
5.SHA384
6.SHA512
This is a very easy to use and fast tool. What you have to do is entering your plain text into the first textbox and then click on generate hash and you will have the results displayed for each of the above mentioned encryptions.
Supported OS: All Windows Operating Systems