Results 1 to 13 of 13
  1. #1
    aLcohoL_95's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    SatyRicon
    Posts
    685
    Reputation
    8
    Thanks
    291
    My Mood
    Cynical

    [Tutorial]VB.net - Obfuscator

    Imports Code :
    Code:
    Imports System
    Imports System.IO
    add a button and add this code :
    Code:
    Dim dialog As New OpenFileDialog
                dialog.Filter = ".NET Assembly Files (*.dll, *.exe)|*.dll *.exe|All Files|*.*"
                If (dialog.ShowDialog = DialogResult.OK) Then
                    Dim stream As New FileStream(dialog.FileName, FileMode.Open, FileAccess.Write)
                    stream.Seek(&HF4, SeekOrigin.Begin)
                    stream.WriteByte(11)
                    stream.Flush
                    stream.Close
                End If
    Credits : Don't know just cracked an app

    This code can block .net reflector
    press "Thanks" button if u like it

    CANNIBAL CORPSE P0WNS


  2. The Following 5 Users Say Thank You to aLcohoL_95 For This Useful Post:

    AceKill3r (02-18-2011),DarkBlade324 (05-08-2014),Lyoto Machida (02-15-2011),warcraff123456 (07-01-2012),Zangadinho0x (06-25-2017)

  3. #2
    Connec's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    Whats this ahahahha.

  4. #3
    Lyoto Machida's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Far away with girls
    Posts
    3,734
    Reputation
    133
    Thanks
    1,621
    My Mood
    Aggressive
    Can you explain better plz?

  5. #4
    Iamazn1's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    407
    Reputation
    12
    Thanks
    50
    Quote Originally Posted by -WØW'' View Post
    Can you explain better plz?
    Probably edits the Header of the .NET Application so that .NET Reflector won't think its a .NET Application.

  6. The Following User Says Thank You to Iamazn1 For This Useful Post:

    Lyoto Machida (02-15-2011)

  7. #5
    Lyoto Machida's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Far away with girls
    Posts
    3,734
    Reputation
    133
    Thanks
    1,621
    My Mood
    Aggressive
    Quote Originally Posted by Iamazn1 View Post
    Probably edits the Header of the .NET Application so that .NET Reflector won't think its a .NET Application.
    hmmm Nice maybe will use this when i do something important xD (never)

  8. #6
    mnpeepno2's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    In a barren wasteland
    Posts
    905
    Reputation
    10
    Thanks
    81
    Nice
    /shrt
    /again


    -----------------------------------------------

    My site: here
    My Blog: here
    My member's area: here
    Minecraft Sever Forum: here


    Minecraft Servers:

    Public:



    Private:



  9. #7
    cosconub's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    in the programming section MPGH Cash: $90,000,000,000
    Posts
    372
    Reputation
    -4
    Thanks
    39
    My Mood
    Psychedelic
    No, Looks like it open's a file Reads it and just changes Text To byte's " a very basic obfuscatior"

    A man is but the product of his thoughts what he thinks, he becomes.
    ~Mohandas Gandhi


    A Genius is nothing with out an idea, An idea is always an idea even without a genius.
    ~ Immortal

  10. #8
    mnpeepno2's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    In a barren wasteland
    Posts
    905
    Reputation
    10
    Thanks
    81
    Quote Originally Posted by cosconub View Post
    No, Looks like it open's a file Reads it and just changes Text To byte's " a very basic obfuscatior"
    yes but gets the job done.


    -----------------------------------------------

    My site: here
    My Blog: here
    My member's area: here
    Minecraft Sever Forum: here


    Minecraft Servers:

    Public:



    Private:



  11. #9
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Not really much of a tut, just a "Hey come copy and paste me and learn nothing pl0x" kind of TuT.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  12. #10
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Yeah, and as I have said to the last 5 posts here, this is what the snippers vault is for.

    Any small source, snippet or project (10 , 11 , 12 lines etc) should go into the snippets vault.


     


     


     



    The Most complete application MPGH will ever offer - 68%




  13. #11
    Iamazn1's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    407
    Reputation
    12
    Thanks
    50
    Quote Originally Posted by cosconub View Post
    No, Looks like it open's a file Reads it and just changes Text To byte's " a very basic obfuscatior"
    Code:
    Dim stream As New FileStream(dialog.FileName, FileMode.Open, FileAccess.Write)
    Opens file into a stream.
    Code:
    stream.Seek(&HF4, SeekOrigin.Begin)
    Goes to the offset &HF4.
    Code:
    stream.WriteByte(11)
    Replaces whatever byte thats located at &HF4 with the byte 11.

  14. #12
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    Quote Originally Posted by cosconub View Post
    No, Looks like it open's a file Reads it and just changes Text To byte's " a very basic obfuscatior"
    Nope, it modifies one byte at position 0xf4.

    Quote Originally Posted by Iamazn1 View Post
    Code:
    Dim stream As New FileStream(dialog.FileName, FileMode.Open, FileAccess.Write)
    Opens file into a stream.
    Code:
    stream.Seek(&HF4, SeekOrigin.Begin)
    Goes to the offset &HF4.
    Code:
    stream.WriteByte(11)
    Replaces whatever byte thats located at &HF4 with the byte 11.
    LOL what are you doing here ? XD

    And you never reply to me on msn |:

  15. #13
    Iamazn1's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    407
    Reputation
    12
    Thanks
    50
    Quote Originally Posted by freedompeace View Post
    Nope, it modifies one byte at position 0xf4.



    LOL what are you doing here ? XD

    And you never reply to me on msn |:
    :awe:
    If I don't reply, it's probably cause I'm afk. I leave my computer on overnight....