PDA

View Full Version : new proxy



teknicalissue
02-02-2008, 05:59 AM
here guys i made a proxy..hopefully it isn't blocked since i just made it check it ou its in

http://www.cybernin.net

Moonbat
02-02-2008, 12:11 PM
In the menu bar, sometimes the menu bar lists it as 'Ninja Proxy' and sometimes as 'Ninja Forum'. Here's an example:

http://www.cybernin.net/main.html shows Ninja Proxy on the menu bar

http://www.cybernin.net/Head%20Ninjas.html 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.

teknicalissue
02-02-2008, 03:23 PM
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:rolleyes: thanks m00nbat

Fixed and shipped =)

coz
02-02-2008, 07:10 PM
Pretty awesome site:D 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!:D

S33D
02-02-2008, 07:16 PM
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

Moonbat
02-02-2008, 09:48 PM
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.

teknicalissue
02-02-2008, 10:52 PM
my friend if i knew php i probably would do that =)

Moonbat
02-03-2008, 11:17 AM
http://www.w*schools.com/php/php_includes.asp

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:

<a href="http://www.google.com">Google</a>
<br>
<a href="http://www.**********">Yahoo!</a>

You could include this menu bar manually by copy/pasting the code for it on every page, like so:

<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>

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:

<html>
<body>

<?php include("menubar.php"); ?>

<h*>WELCOME TO MY HOMEPAGE</h*>

</body>
</html>

This might not have been a very good explanation. You should go to the link I posted.

teknicalissue
02-03-2008, 01:57 PM
will do m00nbat

teknicalissue
02-05-2008, 06:20 PM
question m00nbat, since my proxy is up, how about putting it in the "official proxy list"

Moonbat
02-05-2008, 08:29 PM
Just did :D

teknicalissue
02-06-2008, 01:58 AM
awsome thanks =)

teknicalissue
02-08-2008, 08:15 AM
lol ironically my website got blocked by my school lol that was pretty quick

Moonbat
02-08-2008, 03:49 PM
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:

echo base64_decode(YOURBASE64STUFFHERE);

teknicalissue
02-08-2008, 10:36 PM
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 =)

teknicalissue
02-11-2008, 07:12 AM
Pretty awesome site:D 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!:D

haha didn't mean to ignore you, i just saw your post. so howd you know im in to MMA? lol read my profile in cybernin? haha and yea i saw the fight, it was pretty good don't you think?

coz
02-11-2008, 08:55 AM
Oh yeah! I was very surprised at the heavy weights. Lesnar came out swinging. Pretty good fight. I try to keep up with the mma shows but I hate paying around 40-50 for them.

teknicalissue
02-11-2008, 10:07 AM
haha true ture, but you know that its gonna be out on the net the next day =) so don't pay haha just wait that extra day, thats what i do;)

divya258
03-25-2014, 03:32 AM
Why grey hat when black would have been better?

RogerLankfo
10-16-2014, 10:01 AM
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, good tips thanks for sharing this informative tips, this will going to help many peoples who is looking some proxy related issue.

Curtis Raab
11-25-2016, 03:31 PM
Nice. I got good knowledge . thanks for the replies