Business Name respects your right to privacy and this policy sets out how we collect and treat your personal information. “Personal information” is information we hold which is identifiable as being about you.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| # HNSecurity Walkaway - PHP Proxy - Heiswayi Nrird | |
| # CONFIG {{{ | |
| # Default to simple mode when the page is loaded. [false] | |
| define('DEFAULT_SIMPLE',false); | |
| # Force the page to always be in simple mode (no advanced mode option). [false] | |
| define('FORCE_SIMPLE',false); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function getLineOfCaret(a) { | |
| var b = 0; | |
| if (a.selectionEnd) b = a.selectionEnd; else if (document.selection) { | |
| a.focus(); | |
| var c = document.selection.createRange(); | |
| if (null == c) b = 0; else { | |
| var d = a.createTextRange(), e = d.duplicate(); | |
| d.moveToBookmark(c.getBookmark()); | |
| e.setEndPoint("EndToStart", d); | |
| b = e.text.length; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function escapeAll(str) { | |
| var hexString = ''; | |
| for (var c in str) { | |
| c = str.charAt(c); | |
| for (i = 0; i < 256; ++i) { | |
| // convert i into a 2-digit hex string | |
| var h = i.toString(16); | |
| if (h.length == 1) | |
| h = "0" + h; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Program | |
| { | |
| #region Private variables | |
| // the secret password which we will try to find via brute force | |
| private static string password = "p123"; | |
| private static string result; | |
| private static bool isMatched = false; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| html,body,div,span,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}body{line-height:1;}ol,ul{list-style:none;}blockquote,q{quotes:none;}blockckquote:before,blockquote:after,q:before,q:after{content:'';content:none;}table{border-collapse:collapse;border-spacing:0;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // FILENAME: auto_signin_to_punbb.php | |
| // WRITTEN BY: Heiswayi Nrird | |
| // Define the path to the forum root | |
| define('FORUM_ROOT', './punbb/'); | |
| require FORUM_ROOT.'include/common.php'; | |
| ($hook = get_hook('li_start')) ? eval($hook) : null; | |
| // Load the login.php language file |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| intitle:index.of .bash_history | |
| intitle:index.of .sh_history | |
| intitle:"Index of" index.html.bak | |
| intitle:"Index of" index.php.bak | |
| intitle:"Index of" index.jsp.bak | |
| intitle:"Index of" ".htpasswd" htpasswd.bak | |
| inurl:backup intitle:index.of inurl:admin | |
| "Index of /backup" | |
| intitle:"Index of" index.html~ | |
| intitle:"Index of" index.php~ |