| | |
Forum Member
       
Group: Forum Members Last Login: 12/14/2007 12:30:57 AM Posts: 38, Visits: 8 |
| | Ok, problem is... I made an internet browser and my school has websense. I want to pass websense. Websense is bad. I need proxies. I need proxies to pass Websense. I need something. I need something to pass Websense. Ok, enough kidding... any advice to get past websense would be nice, thanks in advance. |
|
| | |

Supreme Being
       
Group: Forum Members Last Login: 10/8/2011 9:20:20 AM Posts: 233, Visits: 26 |
| so im guessing you have to connect through the schools proxy server to be able to connect.
with the browser, what is it?? is it the default internet explorer plug in that comes with VB, if so all you will need to do is change the proxy settings from the interenet options. if you dont have access to internet options then you may have a bit of a problem.
|
|
| | |
Forum Member
       
Group: Forum Members Last Login: 12/14/2007 12:30:57 AM Posts: 38, Visits: 8 |
| Well, im not really sure. The school blocked everything. that is the tool bars at the top of IE. therefore, i cant change it that easily. here is my code. Option Explicit Dim URL As String Dim Backspaced As Boolean Private Sub cboURL_Change() If Backspaced = True Or cboURL.Text = "" Then Backspaced = False Exit Sub End If Dim i As Long Dim nSel As Long For i = 0 To cboURL.ListCount - 1 If InStr(1, cboURL.List(i), cboURL.Text, _ vbTextCompare) = 1 Then nSel = cboURL.SelStart cboURL.Text = cboURL.List(i) cboURL.SelStart = nSel cboURL.SelLength = Len(cboURL.Text) - nSel Exit For End If Next End Sub Private Sub cboURL_KeyDown(KeyCode As Integer, Shift As Integer) If KeyCode = vbKeyBack Or KeyCode = vbKeyDelete Then If cboURL.Text <> "" Then Backspaced = True End If End If End Sub Private Sub cboURL_KeyPress(KeyAscii As Integer) URL = cboURL.Text If KeyAscii = 13 Then cboURL.AddItem (URL) Browser.Navigate2 URL End If End Sub Private Sub cmdBack_Click() On Error Resume Next Browser.GoBack End Sub Private Sub cmdForward_Click() On Error Resume Next Browser.GoForward End Sub Private Sub cmdGo_Click() URL = cboURL.Text cboURL.AddItem (URL) Browser.Navigate2 URL End Sub Private Sub cmdHome_Click() Browser.GoHome End Sub Private Sub cmdRefresh_Click() Browser.Refresh End Sub Private Sub cmdSearch_Click() Browser.GoSearch End Sub Private Sub cmdStop_Click() Browser.Stop End Sub Private Sub Form_Load() Browser.GoHome End Sub Im not sure what do do so i can get past websense so help please |
|
| | |

Supreme Being
       
Group: Forum Members Last Login: 10/8/2011 9:20:20 AM Posts: 233, Visits: 26 |
| im not sure websense is and how it blocks programs from accessing the Net so sorry i dont think i will be able to help without either having a look at websense or actually being at the school.
i will give it a try though.
is there a proxy/firewall inplace, is this what websense does?? if so it may be blocking the program all together (Most firewalls nowdays you have to allow programs to run) and whatever you change in the code will not make a difference.
what parts of the toolbar are blocked? the back, forward button, address bar? if so i dont know why they would block it as these items are the bare minimum for browsing. if its just stuff like the internet options and other settings which change your preferences, then this would most likely be done using group policy.
|
|
| | |

Forum God
       
Group: Forum Members Last Login: 4/13/2009 1:04:38 PM Posts: 910, Visits: 5,436 |
| Websense blocks sites (porno, hate, bad taste, etc.). The school might have used it to block all sites but one approved by the school. Don't know any workaround.
WayneI know enough to be dangerious. It is hard to understand how a cemetery can raise its burial rates and blame it on the cost of living. |
|
| | |
Forum Newbie
       
Group: Forum Members Last Login: 5/6/2005 7:40:00 AM Posts: 3, Visits: 1 |
| i have websence 2 and i have been working on ways to get past it for a long time!! sadly websence is run by a remote host to which all school bband is run, so the only way to hack past it using code would be to burgle websence HQ. however all is not lost, i have recently discovered that if you run a blocked website through another website it will work. the best one i have discovered is www.browser-x .com , if this site is also blocked all you have to do is to register 4 the forum and post a help wanted with your e-mail and they will send you another of ther many url's
|
|
| | |
Forum Member
       
Group: Forum Members Last Login: 12/14/2007 12:30:57 AM Posts: 38, Visits: 8 |
| | Lol the site doesnt work...it doesnt exist. Maybe you put the wrong url? |
|
| | |
Forum Newbie
       
Group: Forum Members Last Login: 5/6/2005 7:40:00 AM Posts: 3, Visits: 1 |
| |
| | |
Forum Newbie
       
Group: Forum Members Last Login: 5/6/2005 7:40:00 AM Posts: 3, Visits: 1 |
| if its blocked try my games website, i designed it to get past websence, it has links on it to get past websence, the site is www.game123.tk
|
|
| | |
Forum Member
       
Group: Forum Members Last Login: 12/14/2007 12:30:57 AM Posts: 38, Visits: 8 |
| |
|