Programming and Coding
Programming and coding tips, help and solutions...
1,894 topics in this forum
-
-
I've been creating bots to purchase items for the last year or two now for my own personal use and it's been a hit or miss. I understand that it's competing with other programs/bots but I just want to get a general idea of YOUR idea of an efficient bot. I believe my bot is as efficient as it can get but I could be wrong so I wanted to reach out and get advice. Currently I am creating my bots using C# and a headless browser. Each product request/purchase is done in an individual async task until it returns successful. The internet speed is about 500 mbps. Basically, I hope to win by numbers. I've met other programmers who claim they didn't use many threads and …
-
Hello guys, I have a question. How Enigma Virtual Box does files virtualization? How he unpacks the files silently? After execution, I cant see the virtualized files but other programms can see it When I check if (PathFileExists("virtualized_file.dat")) {}
-
I'm using a library called PE Bliss it's a PE Manipulation library, pretty good, however, I'm having problems writing data to a PE section this is my section scope so far: ////////////////////ADD NEW SECTION////////////////////// section new_section; cout << "[+] Adding New Section ..." << endl; //Section Name (8 Chars MAX!) const char section_name[8] = ".hw"; char data[] = { 0x6A, 0x00, // push 0 0x68, 0x00, 0xA0, 0x02, 0xE1, // push "PeBliss" 0x68, 0x00, 0x00, 0x00, 0x00, // push "Built with PeBliss" 0x6A, 0x00, // push 0 0xE8, 0x00, 0x00, 0x00, 0x00, // call MessageBoxA 0xE9, 0x00, 0x00, 0x00, 0x00, // JMP to OEP 'B','u','i','l',…
-
This is my code so far!!! I'm using a PE Library called "PE Bliss" its quite an extensive and nice and rich in features Library as far as I've seen, but given my novice skills with this, I've been running into a problem lately, I want to inject code to a file this are the steps I have gathered used to do that manually: - Get & Store OEP - Add Section - Replace old OEP to new Section OEP - Write MessageBoxA Structrue to new Section & Jump to old entry point - Rebuild PE - Save PE However in my code as shown below when I try to write such data, I can't, it writes the first few bytes into the section, and I still don't know why it's happenin…
-
Hi,guys Do you know any hook api library with its open source code ? I have tried mhook library,not quiet good with named 'RtlAllocateHeap' api. So I am wandering if you guys may know some better library that I can use it to hook that api. Currently I am re-coding a plugin,you may see it within Christmas Thanks in advance.
-
Ported to FASM diablo2oo2's snr patchengine and little search&replace patch example. snr_example_scr_fasm.zip
-
Scrollers Collection For Keygens You can either use the DLL or the static libraries depending on your need. C#, Java and VB.NET developers can use the DLL to invoke the scrollers, C or C++ developers can use both as per need. Source code for the DLL loader and loading DLL's is attached, you can easily manage to get it working with static libraries too. (If you have any issue, post it here). All scrollers are made with all possible simplicity and functionality. See the loader.exe in attached file. Run it and move/play with scrollers, you can also rearrange them,can change there positions,change colors of text,height,width,selfmove,parent move etc Downlo…
-
Could you advice on code snippet or application for simple and cheap solution of Word/VBA hardware locking preferrably working on both x86 and 64 bit. If possible no external dll due to restricted environment.
-
Hi I want to emulate dongle and need source code of virtual use skeleton to make my own emulator I search on google and nothing found . maybe you can help me thanks
-
AssemblyLoadHoocker C#: Hoocks Assembly.Load(byte[] array) so you could change the loaded assembly with your own code. AssemblyLoadHoocker-ImportantFiles.zip attached or the whole Project (also include dnlib): http://www112.zippyshare.com/v/jj3hT5Ik/file.html The project is only inject MessageBox.Show("String") in loaded assembly, you got to customize it, this is why I shared the source code! AssemblyLoadHoocker-ImportantFiles.zip
-
I released the initial version of my generator assembly code(porting Nasm codegen to delphi). It 'the first version and it needs a long time to be improved, I hope someone in collaboration to improve the project. https://github.com/Pigrecos/D_CodeGen
-
StringToHexToString(S2H2S) View File Support AutoIt Version: 3.3.12.0 String To Hex, Hex To String Write Big Size File Very Fast. Submitter GoravGupta Submitted 01/21/2016 Category Source Code
-
anyone tell me, how to make explorer transparent use visual basic
-
anyone tell me, change pc time and date use vb.net language
-
code Imports System.Management Imports System.Security.Cryptography Public Class Encrypt Public Shared Function REn(ByVal Data As Byte(), ByVal Key As String) As Byte() Dim oAesProvider As New RijndaelManaged Dim btSalt() As Byte = New Byte() {1, 2, 3, 4, 5, 6, 7, 8} Dim oKeyGenerator As New Rfc2898DeriveBytes(Key, btSalt) oAesProvider.Key = oKeyGenerator.GetBytes(oAesProvider.Key.Length) oAesProvider.IV = oKeyGenerator.GetBytes(oAesProvider.IV.Length) Dim ms As New IO.MemoryStream Dim cs As New CryptoStream(ms, _ oAesProvider.CreateEncryptor(), _ CryptoStreamMode.Write) Try …
-
Hi all, i try to make a simple resource decryption. Resource are decrypted in .cctor And then it calls this method -> But exe is not runable. I can't find where is the error. Please help me
-
I have a situation over here and I need some help, well, figure the following: EDX Holds a value of an address, in which that address contains data in a byte array I want to check... But I have something like this: 0167C000 | 66 BB 40 B4 | mov bx,B440 | 0167C004 | 66 39 DA | cmp dx,bx | 0167C007 | 74 08 | je unknown.167C011 | 0167C009 | 90 | nop | 0167C00A | 90 | nop | 0167C00B | 75 0A | jnz unknown.1…
-
How can transfer unmanaged ImageBase to managed export parameter?
-
Hello, I'm new here I guess. I was originally planning on just posting a keygenme solution, but for some reason I'm not allowed/able to reply to threads in that section. Maybe if I make a few posts elsewhere it will let me post? If so, I guess I'll start by sharing a few of my projects (related to reverse engineering, of course): eazdevirt - a devirtualizer for Eazfuscator.NET. Not guaranteed to work on recent releases unfortunately (at least not yet). pyinst_tools - a toolkit for working with and modifying executables generated with PyInstaller. Pretty much ExtremeCoder's pyinstxtractor with some extra stuff. dnlib-examples - some extra examples for dnlib …
-
Hello, for the last few days I have been trying to figure out how to use diablo2oo2's dUP2 SNR patch engine in a scripting language called autoit, the way you call Dll's from autoit is as follows DllCall ( "dll", "return type", "function" [, type1, param1 [, type n, param n]] )I don't understand ASM very well, and since the examples are only in ASM, I'm having quite a difficult time translating it to autoit, and I was hoping someone could help me figure out how to call it, Thanks.
-
There is possibility to implement in the C#? I want encrypt message in C# then decryption message C++ side by Crypto++ https://www.cryptopp.com/wiki/RSA_Signature_Schemes
-
Hello I playing on a little Vs cpp project and use Miracl library but after i compile my project use it the MSVCRxxxx.dll fgetc,fgetc,free,fputc,calloc ,__iob_func etc Is it prossible to build a static library without this and what is the settings for it? I have use the commandline build ms32doit.bat all works fine but my project crash in "miracl * mip = mirsys(100, 10);" Ntdll error Regards, raggy
-
Is there similar Crypto++ Encoder method in C# ? This method What does it do? https://github.com/weidai11/cryptopp/blob/master/integer.cpp#L3169
-
I have a library developed by VC++ I want load and call to export the library by unmanaged code such as C# without detecting by AntiVirus and Firewall and without extract the library to hard disk.