Hello,
Im looking for some people {moderators/old members} interest by testing a clickjacking script (beta) im currently developing for Facebook.
This script is a "Proof Of Concept" and should not be used in any illegal purpose.
Ill share it for free for this few members if correctly working...
Vb is one of the worst langage to start with. It's give you so many bad habits.
But its all about programmer, not langage.
Some vb application can be better than c++ or csharp if well coded.
I'll suggest you to start with c#, not vb. But thats just my point of view.
Ok this vb versio:
Private Sub webBrowser1_DocumentCompleted(sender As Object, e As WebBrowserDocumentCompletedEventArgs)
If e.Url.AbsolutePath <> TryCast(sender, WebBrowser).Url.AbsolutePath
Then Return
End If
Dim head As HtmlElement =...
This works for me: {sorry c#}
void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
if (e.Url.AbsolutePath != (sender as WebBrowser).Url.AbsolutePath)
return;
HtmlElement head =...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.