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 =...
Im currently making a script like this on a 100% client side using only javascript.
This put 'clickjack' on all kind of links (a tag or image or whatever) for facebook, twitter and g+ (plusone not fully supported yet and with some restrictions to come). I'll add later possibility to clickjack...
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.