Results 1 to 10 of 10
  1. #1
    fwsefwsgrgwhergr's Avatar
    Join Date
    Oct 2012
    Gender
    female
    Posts
    242
    Reputation
    10
    Thanks
    345
    My Mood
    Cold

    I dont understand this (Builder & Stub)

    Brainfuck

    im confused about this ive wanted to make a project about it but i just cant make it tried checking others code but didnt understand it.
    well could someone tell me
    if i wanted to create a builder with checkboxes like
    run chrome on start
    kill chrome on start
    so how you would do it with builder and stub i dont understand the stub part
    how the thing can understand if i checked run chrome on start and builded the exe from that
    i wish you could make example code or something for me


  2. #2
    Dab's Avatar
    Join Date
    Jun 2015
    Gender
    female
    Posts
    5,426
    Reputation
    663
    Thanks
    9,874
    So basically you're asking about boolean expressions, that's some pretty fundamental shit m8.

    Also the Stub is the virus, thats what you bind to another file or distribute directly, it's what has all the virus stuff.

  3. #3
    deadzeye's Avatar
    Join Date
    Jun 2015
    Gender
    male
    Location
    UNKNOWN
    Posts
    133
    Reputation
    17
    Thanks
    84
    My Mood
    Lurking
    Quote Originally Posted by ColdxFresh View Post
    Brainfuck

    im confused about this ive wanted to make a project about it but i just cant make it tried checking others code but didnt understand it.
    well could someone tell me
    if i wanted to create a builder with checkboxes like
    run chrome on start
    kill chrome on start
    so how you would do it with builder and stub i dont understand the stub part
    how the thing can understand if i checked run chrome on start and builded the exe from that
    i wish you could make example code or something for me

    its not really that hard if you need some help with this i can help you with it and can even help you with other stuff you intrested in doing if intrested add me on skype: deadzeye can help you for sure on the stub and builder not that hard to do to be honest

  4. #4
    Gill Bates's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    /online
    Posts
    1,135
    Reputation
    188
    Thanks
    247
    Quote Originally Posted by ColdxFresh View Post
    Brainfuck

    im confused about this ive wanted to make a project about it but i just cant make it tried checking others code but didnt understand it.
    well could someone tell me
    if i wanted to create a builder with checkboxes like
    run chrome on start
    kill chrome on start
    so how you would do it with builder and stub i dont understand the stub part
    how the thing can understand if i checked run chrome on start and builded the exe from that
    i wish you could make example code or something for me

    As far am I'm understanding, you want [certain app] to start on startup.
    If that is your problem/objective, you can literally just go to settings/properties and make it run on startup.

    Here is an article you could have found by doing your own research.

  5. #5
    殺す必要がある唯一のものは殺されるために準備され人 々である。
    Premium Member
    Hitokiri~'s Avatar
    Join Date
    Oct 2012
    Gender
    female
    Location
    Cancer.
    Posts
    1,201
    Reputation
    24
    Thanks
    937
    My Mood
    Bitchy
    Quote Originally Posted by Dab1996426 View Post
    Also the Stub is the virus, thats what you bind to another file or distribute directly, it's what has all the virus stuff.
    A stub isn't a virus. A stub, by definition is a subcomponent of an a bigger project. By this definition, there are things such as:

    - Stub or proxy methods ( Functioning as a wrapper around another component for easier access )
    - Stubs as a smaller piece of "work" used in distributed computing.

    etc.

    In malware related terms, a stub would be the viral part of the program and the server would function as the main application.


    @OP usually in VB, you'd create a resource in the application with specific values set to true or false ( Which the builder changes accordingly ).
    In the actual application, upon startup you'd check the values of these using a resource reader and perform the designated actions.

    Optionally you could use CodeDom to dynamically create applications and define specific tokens in your application which the builder replaces before compiling.
    Example of using this with CodeDom would be:

    // Excuse my syntax, I don't know VB much, I'm using pseudocode
    Code:
    function Startup()
    {
       if( __KILL__CHROME__ )
           KillChrome();
       else if( __RUN__CHROME__ )
           StartChrome();
    }
    In your builder:
    Code:
    if( killChromeCheckbox.Checked() == TRUE )
        MySource.ReplaceString( "__KILL__CHROME__ ", "TRUE" );
    else
        MySource.ReplaceString( "__KILL__CHROME__ ", "FALSE" );
    if( startChromeCheckbox.Checked() == TRUE )
        MySource.ReplaceString( "__RUN__CHROME__", "TRUE" );
    else
        MySource.ReplaceString( "__RUN__CHROME__", "FALSE" );
    And then simply compile your source using CodeDom ( Which you can read more about here: https://msdn.microsof*****m/en-us/lib...vs.110%29.aspx )

  6. #6
    Dab's Avatar
    Join Date
    Jun 2015
    Gender
    female
    Posts
    5,426
    Reputation
    663
    Thanks
    9,874
    Quote Originally Posted by Hitokiri~ View Post
    A stub isn't a virus.
    I didn't say a stub, I said the stub, specifying it to this thread.

  7. #7
    fwsefwsgrgwhergr's Avatar
    Join Date
    Oct 2012
    Gender
    female
    Posts
    242
    Reputation
    10
    Thanks
    345
    My Mood
    Cold
    yeah i found this codedom thingy off another forum when i did more research
    also im not making virus or any kind stuff like that
    i just wanna test things for future projects

  8. #8
    jokimoto's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    <?php $Name='Harith'; echo' My Name Is '.$Name.'';?>
    Posts
    144
    Reputation
    14
    Thanks
    1,528
    My Mood
    Asleep
    Process.Start("C:\Program\Google Chrome\Google.exe")
    Try

    - HARITH101 -
    WhoAmI ?
    Click Here


    • #Kuso
    • #Bux
    • #Hafiz
    • #CyberTeamRox
    • #MalaysiaGOV


  9. #9
    Dab's Avatar
    Join Date
    Jun 2015
    Gender
    female
    Posts
    5,426
    Reputation
    663
    Thanks
    9,874
    Quote Originally Posted by jokimoto View Post
    Process.Start("C:\Program\Google Chrome\Google.exe")
    Try
    Don't post on threads asking for help if you don't understand your self what you are doing.

    Just Process.Start(URL) will open the default browser with that URL. Specifying a location to start something like a webbrowser is beyond retarded because it could be installed in multiple possible locations.

  10. #10
    maestro1994's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    95
    Reputation
    10
    Thanks
    13
    Quote Originally Posted by Dab1996426 View Post
    Don't post on threads asking for help if you don't understand your self what you are doing.

    Just Process.Start(URL) will open the default browser with that URL. Specifying a location to start something like a webbrowser is beyond retarded because it could be installed in multiple possible locations.
    Don't post on threads trying to help if you don't understand yourself what other people want to do.
    He is right: that is a (little) part of the code to:
    Quote Originally Posted by ColdxFresh View Post
    run chrome on start(up)
    by calling Process.Start(arg1).

Similar Threads

  1. Replies: 9
    Last Post: 10-30-2011, 10:58 PM
  2. If you dont think this is funny suck my kok
    By NeedHacksBad in forum General
    Replies: 3
    Last Post: 09-28-2007, 08:40 PM
  3. I dont understand?
    By Mikeck901323 in forum WarRock - International Hacks
    Replies: 2
    Last Post: 05-15-2007, 11:16 PM
  4. I dont understand!
    By sunny92 in forum WarRock - International Hacks
    Replies: 5
    Last Post: 05-04-2007, 02:44 PM
  5. I dont understand the tutorial
    By ValconGSX in forum WarRock - International Hacks
    Replies: 1
    Last Post: 01-16-2006, 04:11 PM