Programming and Coding
Programming and coding tips, help and solutions...
1,904 topics in this forum
-
Hi guys, at the moment I try to play around with JavaScript again to make any script (very basic) and now I have that problem to copy data / text into system Clipboard. Can anyone show a basic working example to create a function that copies the send API parameter into Clipboard if I need it? Example.... var HOLD1 = "Some_Text_to_COPY"; var input=document.createElement("input"); input.type="button"; input.value="Copy Title" input.onclick = CopyClipBoard(HOLD1); document.body.appendChild(input); function CopyClipBoard(SOMETHING) { SOMETHING.select(); SOMETHING.setSelectionRange(0, 99999); // For mobile devices navigator.clipboard.writeText(SOMETHING.…
-
-
- 36 replies
- 11.9k views
- 1 follower
-
-
ILSpy mod by Medsft: NET assembly browser and decompiler, debugger, High and Low level Editor Project renamed. ILSpy NEXT. NET assembly browser and decompiler, debugger, High and Low level Editor Description: ILSpy (latest ILSpy public version 2.2.0.1737) -add debugger from the SharpDeveloper studio -add CopyFullyQualifiedTypeName.Plugin -add OpCodeTableForm -add to treeview contextmenu: - strong name utility - rename class utility - Jump to EntryPoint - string viewer utility (search enable) - extension exeecute utility (reservation work enable) - hexeditor methodbody utility (runtime compilation enable, …
-
-
- 78 replies
- 61.6k views
- 5 followers
-
-
You will find the source code for aspr_ide.dll, a dynamic link library used in software licensing and protection, specifically for applications protected by AsProtect. This DLL simulates various functions related to license validation, registration, trial period management, and hardware ID checks. With ❤️ aspr_ide.dpr
-
-
- 9 replies
- 4.8k views
- 2 followers
-
-
Hi everyone, help me. How to integrate in delphi with buttons and Infobox? I don't understand it. SnR_Patch_Delphi_Src.zip
-
-
- 5 replies
- 4.9k views
- 2 followers
-
-
Hello, i am reading quite a lot from ARTeam, unfortunately i only got The Weakness of the Windows API Part 1 (from a 3 part series) in my archives, therefore i wanted to ask, where i could find the other two parts as this topic is very interesting for me. May it be that there is only one part available?
-
-
- 10 replies
- 10.1k views
- 2 followers
-
-
Any have any idea to handle this kind protection ?
-
- 0 replies
- 4.1k views
- 1 follower
-
-
Creating a scrolling starfield effect in Delphi. Starfield.rar
-
-
- 3 replies
- 4.7k views
- 2 followers
-
-
Calling getEHinfo x64: crushes [UnmanagedFunctionPointer(CallingConvention.StdCall)] public delegate void getEHinfo(IntPtr self, IntPtr ftn, uint EHnumber, out CORINFO_EH_CLAUSE clause); public static IntPtr getEHinfoaddress; public static bool ShouldResolve = false; public static int targetIndex; public static IntPtr Compiler; public static IntPtr iftn; public static int EhCounti; public static unsafe void ResolveEH(int idx, IntPtr comp, int EHCount, IntPtr ftn) { //IntPtr selfEH1 = GetEHInfo(comp, false); IntPtr getEHinfoadd…
-
-
- 2 replies
- 4k views
- 2 followers
-
-
-
Is it possible to take out the source code from assembly language and how
-
-
- 8 replies
- 4k views
- 2 followers
-
-
-
A complete version of the web site has been converted into a Windows executable. It looks and behaves like the site, but with the added benefits of : No adverts Search facility for finding Run Time Library entries and .Net Methods. Fast access to 1,000+ pages of tutorial/reference pages - the full site and more System.Drawing.Graphics .Net class pages - 44 methods each with examples illustrated with graphical output Printing of pages precisely to any paper size or format RTL lists printable by letter, function, unit or category History drop-down of recent and popular RTL pages Database tutorials, not available on this web site Copy ful…
-
- 0 replies
- 3k views
- 1 follower
-
-
#include <Windows.h> #include <iostream> #include <windowsx.h> #define IDB_EXIT 102 PAINTSTRUCT ps; HDC hdc; RECT starfield_rc; BOOL g_bDragging = FALSE; POINT g_ptDragStart; int WIDTH = 350; int HEIGHT = 400; const int numStars = 50; const int starSpeed = 1; struct Star { int x, y; int speed; }; const int NUM_STARS = 100; Star stars[NUM_STARS]; HDC hdcMem; HBITMAP hbmMem; HBITMAP hbmOld; void starfield(HDC hdc, int x, int y, RECT *rc) { int width = 335; rc->left = x; rc->top = y; rc->right = width; rc->bottom = 249; HDC hdcMem = CreateCompatibleDC(hdc); HBITMAP hbmMem = CreateCompatibleBitmap(hdc…
-
-
- 6 replies
- 3.3k views
- 3 followers
-
-
Hi, I'm looking for C++ loader source code that works on x64 applications with ASLR If someone can help I would really appreciate it
-
-
- 2 replies
- 3.8k views
- 1 follower
-
-
Hello I'm looking for winform GUI interface for injection src code. I use This one for test but when I load the src code like void,ret 0 andWinMain it show error. NB:beginner for coding.
-
-
- 1 reply
- 2.5k views
- 1 follower
-
-
Merci, Frérot Steven.K (Xyl2k) MASM32-graphical-effects
-
- 0 replies
- 2.6k views
- 2 followers
-
-
Anyone can help me to create matrix effect like this in csharp I found way to do it using this project, this is rain effect i like it https://www.codeproject.com/Articles/5164199/Matrix-Style-Rain-in-Csharp-with-WPF But it has letter inside which bounce when hit on side, see the file below, how to do it i want to move letter inside matrix effect File here https://www.mediafire.com/file/oixj2lxsvnckl3j/kg.exe/file I am new in RE hope to learn from you experts.
-
-
- 2 replies
- 3.4k views
- 2 followers
-
-
A simple Template in Delphi with only winapi Api_WindowWithControls.txt
-
- 0 replies
- 2.1k views
- 1 follower
-
-
Hi all, im trying to understand VEH hooking unfortunately all the examples i tried from github only teach doing it in own process. Im trying to veh hook a function in an exe by injecting a dll. Can anyone help please?
-
-
- 10 replies
- 4.8k views
- 1 follower
-
-
I would like to ask if anyone has noticed this issue, started this July on some Windows machines. The using of "EnumDisplayDevices" either Ansi or Unicode versions : Example code : https://stackoverflow.com/questions/9524309/enumdisplaydevices-function-not-working-for-me #include <windows.h> #include <stdio.h> #pragma comment(lib, "user32.lib") void DumpDevice(const DISPLAY_DEVICE& dd, size_t nSpaceCount ) { printf("%*sDevice Name: %s\n", nSpaceCount, "", dd.DeviceName ); printf("%*sDevice String: %s\n", nSpaceCount, "", dd.DeviceString ); printf("%*sState Flags: %x\n", nSpaceCount, "", dd.StateFlags ); printf("%*sDeviceID: %…
-
-
- 5 replies
- 2.7k views
- 1 follower
-
-
A basic media player application written in x86 and x64 assembler that utilizes the MFPlayer-Library - which consists of functions that wrap the MFPlay COM implementation of the IMFPMediaPlayer and IMFPMediaItem objects. https://github.com/mrfearless/MediaPlayer Features Supports audio and video media that is natively supported by the Microsoft Media Foundation API Player controls via toolbar buttons, menu or context menu: Play/Pause Toggle, Stop, Frame Step, Volume Mute/Unmute, Fullscreen toggle, About, Exit. Custom control for Volume slider. Custom control for Seekbar slider. Custom controls for Labels (for duration of med…
-
-
- 56 replies
- 8.8k views
- 2 followers
-
-
This is anti-debug code for detecting ollydbg 32-bit version by @cpudbg. Got it from a Chinese forum. typedef LONG (WINAPI* WINDOWSBYTE)(int, int); bool CheckDebug() { DWORD dwRet = 0; char szModuleName[15] = {0x75, 0x73, 0x65, 0x72, 0x33, 0x32, 0x2E, 0x64, 0x6C, 0x6C}; // user32.dll PWCHAR lpModuleName = NULL; PWCHAR lpModuleNameTemp = NULL; PCHAR lpSrc = szModuleName; DWORD dwAPI = 0; DWORD dwFunName = 0; DWORD dwBase = 0; _asm { xor ecx, ecx mov esi, fs: [0x30] mov esi, [esi + 0x0c] mov esi, [esi + 0x1c] next_module: mov eax, [esi+0x8] cmp eax, 0 je end …
-
-
- 21 replies
- 6.1k views
- 3 followers
-
-
Hi guys, another question today. So I did delete few files accidentally by using the Window function DeleteFIle in my app (just some text files to delete) and if that happens the files are gone and not find in trashcan etc. So my question is how to get them back (so simple as possible)? I tried using Recuva app I found quickly on internet what was showing some files I could not find in trashcan but not all I did delete. Is there any other function instead of using DeleteFile what does delete the files I want BUT just moving them into trashcan only like Windows itself does? greetz
-
-
- 5 replies
- 3.6k views
- 1 follower
-
-
How to get Tables length with dnlib?? Fallowing tables: 0x1B000000 TypeSpec 0x01000000 TypeRef 0x02000000 TypeDef 0x0A000000 MemberRef 0x04000000 Field 0x06000000 Method 0x2B000000 MethodTyPar 0x70000000 String 0x11000000 StandAloneSig
-
-
- 1 reply
- 1.8k views
- 1 follower
-
-
I need to show the printed serial number of an external usb hard drive using c# . I have found many sources in "github" but the returned serial number is not correct. the only program that gave me the correct serial number is "CrystalDiskInfo" which is open source but written in c ++ which I do not understand. Here is an example with "CrystalDiskInfo" with the correct result: Thanks for help
-
-
- 7 replies
- 8.6k views
- 1 follower
-