Discouraging disassembling?

Posts 3144 of 44 · Page 3 of 3
Lol. Next your are a sneaky little bastard. xD

Do it! Set him up to take the plunge. I love espionage stories!
Quote Originally Posted by why06 View Post
Lol. Next your are a sneaky little bastard. xD

Do it! Set him up to take the plunge. I love espionage stories!
Agreed, I say go for it
The teachers in school aren't always the brightest guys, more like the opposite, so you'd better not kill svchost or printspool :P
I lol'd @ that sneaky plan tho
Quote Originally Posted by Hell_Demon View Post
The teachers in school aren't always the brightest guys, more like the opposite, so you'd better not kill svchost or printspool :P
I lol'd @ that sneaky plan tho
Ok, Explorer it is... (no fun...) But good point, Some teachers read from a book, question is, did you notice any Idiots guide to teaching and learn VB.net in 21 hours, lying around anywhere, If you have...I don't suggest killing explorer, maybe change wallpaper... That could be fun and way less harmful, Make the wallpaper have the students name on it, A message like, I have been stealing other peoples code, and I should be expelled for plagiarism and a form of copyright infringement , and a big red circle that says ...Busted!

Code:
Imports System.Drawing
Imports System.Drawing.Drawing2D
Imports System.Drawing.Imaging

Public Class frmMain
    Inherits System.Windows.Forms.Form
    
Private Declare Function SystemParametersInfo Lib "user32" Alias "SystemParametersInfoA" (ByVal uAction As Integer, ByVal uParam As Integer, ByVal lpvParam As String, ByVal fuWinIni As Integer) As Integer


        Private Const SPI_SETDESKWALLPAPER = 20
        Private Const SPIF_UPDATEINIFILE = &H1

Private Sub btnSetWallpaper_Click(ByVal sender As System.Object, ByVal e As          
                  System.EventArgs) Handles btnSetWallpaper.Click

        Dim imagePath As String = Application.StartupPath & "\icon.bmp" ' which will really be the image that rats him/her out

        
        pic.Image.Save(imagePath, ImageFormat.Bmp)


        SystemParametersInfo(SPI_SETDESKWALLPAPER, 0, imagePath, SPIF_UPDATEINIFILE)

    End Sub

 Private Sub btnBrowse_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)             



        Dim dlg As OpenFileDialog = New OpenFileDialog

        dlg.Filter = "Image Files (*.bmp, *.gif, *.jpg)|*.bmp;*.gif;*.jpg"
        dlg.Title = "Select the image to load."

        dlg.ShowDialog()


        pic.Image = Image.FromFile(dlg.FileName)
        dlg.Dispose()

    End Sub
End class

Ha Ha
Quote Originally Posted by wtfiwantthatname View Post
Lolland pm me and ill hook you up.
A. with what...

and

B. That doesn't help others with the same problem

Mpgh.net = community
Quote Originally Posted by why06 View Post
idk... it's just a class. If you don't want them to have your code don't give it to them. I know I wouldn't go through all this crap just for a school assignment... jeesh.
It's mandatory to release your program to the class, that's how he grades us on our GUI and simplicity of GUI.

What he does:

On his laptop he has something called reflect or whatever that our teacher showed us a while ago.. and he uses it to decompile my (excellent) work and steals my code.

So in order to screw him up I needed a packer/obfuscator.

Yeah so I'm good now, and my teacher gave me extra grades for obfuscating it because he said "In the modern programming world, obfuscating is damn near mandatory." or something like that.
Oh a reflector. Yeh... reflectors owns .NET and Java for that matter. They're bytecode is too high level. Anyway like I said: You can use an obfuscator, but it's 100% obvious that you used one o_O and the teacher may not like that. So I guess just deal with it... =/
Quote Originally Posted by why06 View Post
You can use an obfuscator, but it's 100% obvious that you used one o_O and the teacher may not like that. So I guess just deal with it... =/
I have to give him the project file, so he doesn't care about my obfuscating... in fact (as I stated before) he likes it.
Quote Originally Posted by Lolland View Post
I have to give him the project file, so he doesn't care about my obfuscating... in fact (as I stated before) he likes it.
Oh I'm blind sometimes. Completely skipped over what you said. xD

Nice. +1 for epic win.
Yeah so I'm good now, and my teacher gave me extra grades for obfuscating it because he said "In the modern programming world, obfuscating is damn near mandatory." or something like that
That's Awesome
MPGH: Raising people's grades since 2004 (or whenever).

/Request close.
Id hook him up with a copy of RLpack. And B it isnt for the community its for lolland only.
Quote Originally Posted by wtfiwantthatname View Post
Id hook him up with a copy of RLpack. And B it isnt for the community its for lolland only.
He requested a close . and is satisfied with the result.
Posts 3144 of 44 · Page 3 of 3
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?