Post: Code Browser Source Code
03-05-2011, 02:40 AM #1
BuC-ShoTz
TeamMvKâ?¢
(adsbygoogle = window.adsbygoogle || []).push({}); I see alot of people making Code Browser and Finders.
this the way i would implement it.

This allows the end users to add codes to the browser.

Based on a xml file.

This is not fully complete.

It does function, the executable is in the bin\debug folder

If you use this source code please leave credits

You must login or register to view this content.

You must login or register to view this content.
(adsbygoogle = window.adsbygoogle || []).push({});

The following 19 users say thank you to BuC-ShoTz for this useful post:

Alexis Rhodes, Chrome Playa, cjmurder123, Correy, DEREKTROTTER, DreamKidzVa, GamingPresents, Ghost1990, IVThaKiller, JakeM, Jannis96, KillaPwner, Mabez96, matt944057, maxrox, Mr.Azoz, NeglectFate, CHAOZ, TheFallen
03-05-2011, 02:45 AM #2
looks awesome thanks
03-05-2011, 03:07 AM #3
IVThaKiller
Gym leader
At least this won't be leaked. Thanks BuC's for all the support you have been giving to the site. Most of us appreciate. And we are sorry about the douche bag who leaked your program.

BTW: I noticed your .FF Viewer is coded in VB.NET, so here is a code to prevent people from leaking:



Form load:

    
Call PingTest


PingTest:
        Public Sub PingTest()
If My.Computer.Network.Ping("74.125.229.52") Then 'IP is Google.com
' Basically put any thing here. If formload is nothing, just leave this blank.
Call CheckProgram()
Else
MsgBox= "Error: Not internet available."
End
End If
End Sub


CheckProgram:
    
Command.Text = WebBrowser2.Document.GetElementById("TEXT").InnerText ' Make sure you have a webbrowser going to a website that has HTML text on it. [URL=https://ivthakillerhd.webs.com/GSCModer/V1-2/Version1.2.htm]Here is an example that I use in one of my tools[/URL]. The Command.Text is a label.


Than make sure you add this:
            If WebBrowser2.Document.GetElementById("TEXT").InnerText = "/doSHUTDOWN" Then 'SHUTDOWN
MsgBox("Ha, you think you can leak my tool that easily?")
End
End If


HTML Code for 'TEXT':
    <a id="TEXT">/doSHUTDOWN</a> // Leave it blank for nothing to happen basically.

This was from top of my head. There is obviously more advance ways, but this works.

The following 4 users say thank you to IVThaKiller for this useful post:

BuC-ShoTz, Rebecca Black, CHAOZ, woofdawg233
03-05-2011, 03:18 AM #4
BuC-ShoTz
TeamMvKâ?¢
[quote='[GzP] Engine;2714037']At least this won't be leaked. Thanks BuC's for all the support you have been giving to the site. Most of us appreciate. And we are sorry about the douche bag who leaked your program.[/quote]

im not really worried about that, release was coming anyway

he had a crap version.

working on unlocking the black ops patch for ps3 now

---------- Post added at 10:18 PM ---------- Previous post was at 10:13 PM ----------

[quote='[GzP] Engine;2714037']At least this won't be leaked. Thanks BuC's for all the support you have been giving to the site. Most of us appreciate. And we are sorry about the douche bag who leaked your program.

BTW: I noticed your .FF Viewer is coded in VB.NET, so here is a code to prevent people from leaking:



Form load:

    
Call PingTest


PingTest:
        Public Sub PingTest()
If My.Computer.Network.Ping("74.125.229.52") Then 'IP is Google.com
' Basically put any thing here. If formload is nothing, just leave this blank.
Call CheckProgram()
Else
MsgBox= "Error: Not internet available."
End
End If
End Sub


CheckProgram:
    
Command.Text = WebBrowser2.Document.GetElementById("TEXT").InnerText ' Make sure you have a webbrowser going to a website that has HTML text on it. [URL=https://ivthakillerhd.webs.com/GSCModer/V1-2/Version1.2.htm]Here is an example that I use in one of my tools[/URL]. The Command.Text is a label.


Than make sure you add this:
            If WebBrowser2.Document.GetElementById("TEXT").InnerText = "/doSHUTDOWN" Then 'SHUTDOWN
MsgBox("Ha, you think you can leak my tool that easily?")
End
End If


HTML Code for 'TEXT':
    <a id="TEXT">/doSHUTDOWN</a> // Leave it blank for nothing to happen basically.

This was from top of my head. There is obviously more advance ways, but this works.
[/quote]

Its C# though, if you want the FastFile Editor let me know ill hook you up
03-05-2011, 03:19 AM #5
IVThaKiller
Gym leader
Originally posted by ShoTz View Post
im not really worried about that, release was coming anyway

he had a crap version.

working on unlocking the black ops patch for ps3 now


Good to hear that. This time make sure to make it 'douche-bag free' just in case, hahaha. We appreciate all your hard work, and we are hoping to see some more from the future. Winky Winky

The following user thanked IVThaKiller for this useful post:

CHAOZ
03-05-2011, 03:22 AM #6
CHAOZ
Banned
[quote='[GzP] Engine;2714135']Good to hear that. This time make sure to make it 'douche-bag free' just in case, hahaha. We appreciate all your hard work, and we are hoping to see some more from the future. Winky Winky[/quote]

feeling good today,
though I'd hook you up myself.. Happy


You must login or register to view this content.

The following user thanked CHAOZ for this useful post:

BuC-ShoTz
03-05-2011, 03:23 AM #7
IVThaKiller
Gym leader
Originally posted by ShoTz View Post
im not really worried about that, release was coming anyway

he had a crap version.

working on unlocking the black ops patch for ps3 now

---------- Post added at 10:18 PM ---------- Previous post was at 10:13 PM ----------



Its C# though, if you want the FastFile Editor let me know ill hook you up


In that case:



Form load:

    
PingTest();


PingTest:
     Sub

public void PingTest() {
if (My.Computer.Network.Ping("74.125.229.52")) {
// IP is Google.com
// Basically put any thing here. If formload is nothing, just leave this blank.
CheckProgram();
}
else {
MsgBox = "Error: Not internet available.";
}
}


CheckProgram:
    
Command.Text = WebBrowser2.Document.GetElementById("TEXT").InnerText;
// Make sure you have a webbrowser going to a website that has HTML text on it. [URL=https://ivthakillerhd.webs.com/GSCModer/V1-2/Version1.2.htm]Here is an example that I use in one of my tools[/URL]. The Command.Text is a label


Than make sure you add this:
          if ((WebBrowser2.Document.GetElementById("TEXT").InnerText == "/doSHUTDOWN")) {
// SHUTDOWN
MsgBox("Ha, you think you can leak my tool that easily?");
}
If


HTML Code for 'TEXT':
    <a id="TEXT">/doSHUTDOWN</a> // Leave it blank for nothing to happen basically.

This was from top of my head. There is obviously more advance ways, but this works.


(Used translator. Hope it works... It should give you a basic idea I guess.)
03-05-2011, 03:23 AM #8
BuC-ShoTz
TeamMvKâ?¢
there it is have fun ^^^^^^^^^^^^^^^^^^^^^^^^^

if you want the good version let me know

Thanks Ruffingayy

The following user thanked BuC-ShoTz for this useful post:

CHAOZ
03-05-2011, 03:26 AM #9
IVThaKiller
Gym leader
Originally posted by ShoTz View Post
there it is have fun ^^^^^^^^^^^^^^^^^^^^^^^^^

if you want the good version let me know


Sincerely, I would say yes. But then if it randomly gets out there I do not want to be the one that everyone has there eyes on. Thanks any ways, I really, really, really appreciate the offer Winky Winky. Maybe I could add you on MSN? (Obviously if you do not mind).
03-05-2011, 03:30 AM #10
BuC-ShoTz
TeamMvKâ?¢
its already out and i made it so it wouldnt open 1.12, so it will be useless on the 1.12 release

---------- Post added at 10:30 PM ---------- Previous post was at 10:28 PM ----------

Originally posted by Ruffinguyy View Post
feeling good today,
though I'd hook you up myself.. Happy


You must login or register to view this content.


this guy must be 11 years old, he is mad cause i ignored him on msn, cant help but laugh!:black:

your mommy's calling you for a diaper change and a baba

The following 4 users say thank you to BuC-ShoTz for this useful post:

IVThaKiller, CHAOZ

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo