here guys i made a proxy..hopefully it isn't blocked since i just made it check it ou its in
[url]http://www.cybernin.net[/url]
here guys i made a proxy..hopefully it isn't blocked since i just made it check it ou its in
[url]http://www.cybernin.net[/url]
Yes..i do wear a grey hat... and don't plan on changing to white or black..
In the menu bar, sometimes the menu bar lists it as 'Ninja Proxy' and sometimes as 'Ninja Forum'. Here's an example:
[url]http://www.cybernin.net/main.html[/url] shows Ninja Proxy on the menu bar
[url]http://www.cybernin.net/Head%20Ninjas.html[/url] shows Ninja Forum instead of Ninja Proxy on the menu bar
I can't give you any real feedback on the proxy itself until I use it at school, to see if it's detected by my school or not.
"Workers of the world unite; you have nothing to lose but your chains." -Karl Marx
thank you for that, lol as you may see im in the process of making that site and i guess i must have missed that thanks m00nbat
Fixed and shipped =)
Last edited by teknicalissue; 02-02-2008 at 06:41 PM.
Yes..i do wear a grey hat... and don't plan on changing to white or black..
Pretty awesome site The PHProxy you are using is very common. It will probably get picked up. I'm not totally sure though because web proxies are much harder to detect because they send no proxy info in the http header. So web filters may only look for a blacklist of sites?
Anyway I see your into MMA teknicalissue. Are you watching the big fight this weekend? Sylvia vs Nogueira && Mir vs Lesnar. It's gonna be good!
This Proxy is Very Awsome and The cite CYBERNIN.NET is Also Very Awsome so Awsome in Fact That I Just Had to Write This in Title Case and I am Not Biased in Any Way
tek, I don't mean to assume, but are you manually copying/pasting the code for the menu bar on each page of the site? You could easily do that using PHP's include() function.
"Workers of the world unite; you have nothing to lose but your chains." -Karl Marx
my friend if i knew php i probably would do that =)
Yes..i do wear a grey hat... and don't plan on changing to white or black..
[url]http://www.w*schools.com/php/php_includes.asp[/url]
Read this, it'll tell you all you need to know about including files. But here's the gist of it.
Suppose you have a menu you want to appear on every page. The code for the menu bar is:
You could include this menu bar manually by copy/pasting the code for it on every page, like so:Code:<a href="http://www.google.com">Google</a> <br> <a href="http://www.**********">Yahoo!</a>
But, with PHP, you can put the code for the menu bar into a seperate page called menubar.php and make the source code look like so:Code:<html> <body> <a href="http://www.google.com">Google</a> <br> <a href="http://www.**********">Yahoo!</a> <h*>WELCOME TO MY HOMEPAGE</h*> </body> </html>
[PHP]<html>
<body>
<?php include("menubar.php"); ?>
<h*>WELCOME TO MY HOMEPAGE</h*>
</body>
</html>
[/PHP]
This might not have been a very good explanation. You should go to the link I posted.
"Workers of the world unite; you have nothing to lose but your chains." -Karl Marx
will do m00nbat
Yes..i do wear a grey hat... and don't plan on changing to white or black..
question m00nbat, since my proxy is up, how about putting it in the "official proxy list"
Yes..i do wear a grey hat... and don't plan on changing to white or black..
Just did
"Workers of the world unite; you have nothing to lose but your chains." -Karl Marx
awsome thanks =)
Yes..i do wear a grey hat... and don't plan on changing to white or black..
lol ironically my website got blocked by my school lol that was pretty quick
Yes..i do wear a grey hat... and don't plan on changing to white or black..
Eh, just some advice to not get blocked. Take any and all mention of 'proxy' or 'filter' out of the web page. I know it'll make getting your proxy well-known a little harder, but it'll get blocked less. School filters often look for keywords such as the ones I've said and when they find them they'll block 'em.
Also, if you're using a commonly found proxy script, you'll wanna obfuscate the code a little, maybe stick in a few <!-- comments --> in places. School filters check for blocks of code sometimes and the comments may throw them off.
If all else fails, take your source code, convert it all to Base64 using any old online converter, and use PHP's base64_decode function, like so:
[PHP]echo base64_decode(YOURBASE64STUFFHERE);[/PHP]
"Workers of the world unite; you have nothing to lose but your chains." -Karl Marx
good tip, but they didn't block out my proxy, the blocked my whole page, and on a side note i know for a fact that my school just blocks the URL...like i said, the people not clearing history was gonna kill me. my IP address alone works fine though =)
Yes..i do wear a grey hat... and don't plan on changing to white or black..