KiR Clan
Would you like to react to this message? Create an account in a few clicks or log in to continue.

KiR Clan

Welcome to KiR
 
HomeKiRgamingLatest imagesSearchRegisterLog in
Log in
Username:
Password:
Log in automatically: 
:: I forgot my password
Poll
Cool Layout?
No
Sql Injection? I_vote_lcap0%Sql Injection? I_vote_rcap
 0% [ 0 ]
Yes
Sql Injection? I_vote_lcap20%Sql Injection? I_vote_rcap
 20% [ 1 ]
Poop
Sql Injection? I_vote_lcap0%Sql Injection? I_vote_rcap
 0% [ 0 ]
I like cawks
Sql Injection? I_vote_lcap20%Sql Injection? I_vote_rcap
 20% [ 1 ]
SPIKE DON'T MOVE TO LA T_T
Sql Injection? I_vote_lcap20%Sql Injection? I_vote_rcap
 20% [ 1 ]
KiR Rules
Sql Injection? I_vote_lcap20%Sql Injection? I_vote_rcap
 20% [ 1 ]
Peniseses
Sql Injection? I_vote_lcap20%Sql Injection? I_vote_rcap
 20% [ 1 ]
Total Votes : 5
Latest topics
» It's been 10 years, if you see this, hit me up. Ice.
Sql Injection? I_icon_minitimeWed Mar 04, 2020 8:08 am by Ice

» Jiggly Puff
Sql Injection? I_icon_minitimeSat Jan 14, 2012 4:45 pm by Tactical

» Song Request
Sql Injection? I_icon_minitimeSat Nov 05, 2011 6:16 am by donnawhite

» What is your favorite movie?
Sql Injection? I_icon_minitimeTue Sep 20, 2011 7:13 am by ammyspears

» Навального разоблачили в Твиттере
Sql Injection? I_icon_minitimeThu Aug 04, 2011 6:18 am by Guest

» pure fish oil
Sql Injection? I_icon_minitimeThu Aug 04, 2011 5:34 am by Guest

» Job-stressed women more vulnerable than men to 9/11 trauma
Sql Injection? I_icon_minitimeThu Aug 04, 2011 2:37 am by Guest

» проститутки питера за 1300
Sql Injection? I_icon_minitimeThu Aug 04, 2011 2:36 am by Guest

» шлюхи калуги фото
Sql Injection? I_icon_minitimeThu Aug 04, 2011 12:15 am by Guest

Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search
Top posters
Tactical
Sql Injection? I_vote_lcapSql Injection? I_voting_barSql Injection? I_vote_rcap 
mbk
Sql Injection? I_vote_lcapSql Injection? I_voting_barSql Injection? I_vote_rcap 
YuuAnder
Sql Injection? I_vote_lcapSql Injection? I_voting_barSql Injection? I_vote_rcap 
Ice
Sql Injection? I_vote_lcapSql Injection? I_voting_barSql Injection? I_vote_rcap 
SleazyBoi
Sql Injection? I_vote_lcapSql Injection? I_voting_barSql Injection? I_vote_rcap 
kethsar
Sql Injection? I_vote_lcapSql Injection? I_voting_barSql Injection? I_vote_rcap 
Stoopid Monkey
Sql Injection? I_vote_lcapSql Injection? I_voting_barSql Injection? I_vote_rcap 
Apple
Sql Injection? I_vote_lcapSql Injection? I_voting_barSql Injection? I_vote_rcap 
Sneaky
Sql Injection? I_vote_lcapSql Injection? I_voting_barSql Injection? I_vote_rcap 
MyeRs
Sql Injection? I_vote_lcapSql Injection? I_voting_barSql Injection? I_vote_rcap 
Who is online?
In total there is 1 user online :: 0 Registered, 0 Hidden and 1 Guest

None

Most users ever online was 83 on Thu Oct 08, 2020 6:56 pm
Search
 
 

Display results as :
 
Rechercher Advanced Search

 

 Sql Injection?

Go down 
2 posters
AuthorMessage
TargetDummy




Posts : 4
Join date : 2010-04-26
Age : 39
Location : Fort Lauderdale, FL.

Sql Injection? Empty
PostSubject: Sql Injection?   Sql Injection? I_icon_minitimeTue Apr 27, 2010 5:13 am

At the time of writing this article,

Their is one website that i've hacked before using a pretty basic SQL injection but I've helped them patch up most of it, but it doesn't mean it still isn't injectable.

Alright, Their is more than one way of SQL Injecting ones website. the easiest example is get parameters. a get parameter is pretty simple. a get parameter is pretty much whats in bold from the following string. http://someWebsite.com/forum?fid=3. or in better words anything after a ? is a get parameter. most of the time seeing a ? and the word id or anything in the likes is instantly known to be either A: connecting to a database, or doing some sort of short hand processing before being sent to a database.

however, this isn't what I'm going to be talking about in this article. I am going to be talking about basic FORMed sql injection. a form is like a login page. each time you fill in the fields, the fields are part of the form, including the submit/login button. thats a great place to begin a basic SQL Injection attack.

Things you could do to create a basic successful attack is try altering the tables. What I mean by this, is try to force a MySQL error. just to test try typing '/*Commented*/ into one of the fields, repeat the same thing again, and look out for a error. If you see a field validation error, that page has validation and cannot be hacked into that easily.

try looking for another exploit. try adding a \ before every tick mark. for example before we were just typing '/*Commented*/ now its going to look like this -> \'/*Commented*/. and the list can go on. we c an fool the best of validation systems by doing things in orders like this.

one website, I hacked into earlier I used the following to gain information and pretty much shutdown their mssql instance.

\'/**/O/**/R /**/1/***/=/***/\'/**/1/**/\'/***/;/***/S/**/H/**/U/**/T/**/D/**/OW/***/N W/**/IT/**/H /**/N/***/OW/***/AI/**/T/**/;/****/-/***/-/****/

look at the above example.

a /* and */ is a basic comment. just doing /* A Coomment */ in between letters can mess up a validation system. -- is also a comment, but it has no end tag unlike /* */.
Just knowing basic SQL Syntax can help you in SQL Injection. some of the most popular local sites around your area, never know they have bugs unless you begin exploiting them.

one of the most popular exploits is the ' OR '1' == '1' combo. their are many variations to it. for example:

a' OR 'a' == 'a'
' or '' = ''

their are a lot more but i cannot get in depth with you.


THE FOLLOWING ARTICLE IS MEANT AS A INSTRUCTIONAL ARTICLE. THE USE OF THIS ARTICLE IS ETHICAL AND MAY NOT BE TRACED BACK TO ME. BE CAREFUL WHERE YOU USE EXPLOITS AS YOU MAY NOT ALWAYS ERASE YOUR TRACKS.
Back to top Go down
http://cp0.revgamers.net:81/
Tactical

Tactical


Posts : 367
Join date : 2010-04-12

Sql Injection? Empty
PostSubject: Re: Sql Injection?   Sql Injection? I_icon_minitimeSun Jun 20, 2010 8:07 pm

See, this has been killing me for awhile... I never bothered to ask exactly what any of this mean o_O
Back to top Go down
 
Sql Injection?
Back to top 
Page 1 of 1

Permissions in this forum:You cannot reply to topics in this forum
KiR Clan :: Skillz :: Scripting-
Jump to: