Originally posted by kiLLeR-eyEd_14
View Post
lavalair script holes
Collapse
X
-
Shell scripts can't do anything if they are moved to a hidden folder and then md5'd and then have to be vaildated before they are moved to the downloads folder..
and as for image session id stealer thinggy, don't allow images to be added via a link, make all images have to be vaildated and md5'd.. they will still show as normal if there md5'd. and don't allow hotlinking..
then if you get a noob hacker trying his luck then they will just go away because they wont get anywere... but remember, a good hacker can get into any script! even the most secure scripts they can hack!
you will always get noob's trying to hack lavalair edits etc.. because they are probably the most saddest people on the internet and get a kick out of hacking lavalair edits and sharing them here.
"ooohhhh yeah, i hacked lavalair edit, im a top internet hacker"
hahaha!
Comment
-
Originally posted by ozziemale31 View Postmake a htaccess page with the following in side it
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
<Files images>
deny from all
</Files>
<Files *.php>
deny from all
</Files>
<Files *.php.*>
deny from all
</Files>
<Files *.php.php.*>
deny from all
</Files>
then place it in your share folders this will stop the php pages executing in those folders on your server
PHP Code:<FilesMatch "\.(jpe?g|png|gif|bmp|php|mid|mp3|wma|wav|amr|sis|sisx|jar|jad|3gp|mp4|avi|mov|wmv|mpg|mpeg)$">
Order Deny,Allow
Deny from all
</FilesMatch>
Comment
-
True wat whitewarrior said, do ur basic protection: quote escapes, upload file scannin renaming n maybe file header validation resizing(for jpegs), sid security and input validation. Any hacker dat can be arsed enuf to go d extra mile must ava gud reason, prolly deserves to hack u, or is not a very cheerful lad lol. I dnt knw about others bt i wont even try to go over d edge just 4 sum crap wap site even tho i can. If its nt watchn my server logs or generating sid or uploading AND ur site isnt prodigits pls im nt interested and i wnt listen 2 ppl dat say "hack my site, lets c if u can" cuz usually d results r d same.
Oh an N.B No mata how secure u tink ur uploader is PLEASE dnt use CSS upload. DANGER!! Dnt say i didnt warn u lol.
Comment
-
Originally posted by ori View Postwell my css changes itself for each user its a neat lil trick using php and also stops ppl seeing ur css file too and stealing ideasIt's better to keep your mouth shut and give the impression that you're stupid, than to open it and remove all doubt.
ⓣⓗⓔ ⓠⓤⓘⓔⓣⓔⓡ ⓨⓞⓤ ⓑⓔ©ⓞⓜⓔ, ⓣⓗⓔ ⓜⓞⓡⓔ ⓨⓞⓤ â“â“¡â“” â“ⓑⓛⓔ ⓣⓞ â“—â“”â“â“¡ !
ιη тнєσÑу, тнє ÏÑα¢тι¢є ιѕ α Ñєѕυℓт σƒ тнє тнєσÑу, вυт ιη ÏÑα¢тι¢є ιѕ тнє σÏÏσѕιтє.
Comment
-
Originally posted by ori View Postmy css file is unreadable by browsers as it is a php file lol have look the source for afta-dark.mobi
but(gee theres always this BUT lmao)
i could copy your site exact css style ;) :PIt's better to keep your mouth shut and give the impression that you're stupid, than to open it and remove all doubt.
ⓣⓗⓔ ⓠⓤⓘⓔⓣⓔⓡ ⓨⓞⓤ ⓑⓔ©ⓞⓜⓔ, ⓣⓗⓔ ⓜⓞⓡⓔ ⓨⓞⓤ â“â“¡â“” â“ⓑⓛⓔ ⓣⓞ â“—â“”â“â“¡ !
ιη тнєσÑу, тнє ÏÑα¢тι¢є ιѕ α Ñєѕυℓт σƒ тнє тнєσÑу, вυт ιη ÏÑα¢тι¢є ιѕ тнє σÏÏσѕιтє.
Comment
-
Originally posted by ori View Posti mixed php and css using a css header in php fileCode:body {background-color:#000; color:#fff; font-family:'Segoe Print', Verdana, Arial; font-size:medium; margin:0px; padding:2px;} head {font-size:medium;} img {border:0;} .img {margin:10px;} small, big, i {color:#fff;} a, a:active, a:visited, a:hover {color:#3366ff; text-decoration:none;} p, div {text-align:center; width:100%;} .center { text-align:center; } .bold { font-weight:bold; } .adblock, .adblock2 { background-image:url("/images/style/adblock_bg.png"); background-repeat:repeat-x; color:#000; margin:2px 0px 2px 0px; padding:2px 0px 2px 0px; } .adblock a, .adblock2 a { font-weight:bold; color:#3366ff; } .adblock a:hover, .adblock2 a:hover { font-weight:bold; color: #ff0000; } .adblock img, .adblock2 img { height:25px; width:150px; } .title { color:#fff; padding:2px 0px 2px 0px; background-image:url("/images/style/3366ff_header_bg.png"); background-repeat:repeat-x; background-color:#000; } .navi { color:#fff; font-size:small; padding:2px 0px 2px 0px; background-image:url("/images/style/3366ff_footer_bg.png"); background-repeat:repeat-x; background-color:#000; } .navi a, .navi a:active, .navi a:visited { color:#000; } .navi a:hover { color:#fff; } .warn { background-color:#ffe1bb; color:#000; font-size:small; padding:0px 2px 0px 2px; border:1px solid #ff9900; } .error { background-color:#fda9a9; color:#000; font-size:small; padding:0px 2px 0px 2px; border:1px solid #ff0000; } .ok { background-color:#c1ffc1; color:#000; font-size:small; padding:0px 2px 0px 2px; border:1px solid #00c000; }
Comment
Comment