Jump to content
View in the app

A better way to browse. Learn more.

Tuts 4 You

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Programming and Coding

Programming and coding tips, help and solutions...

  1. 0xd4d
    Started by 0xd4d,

    I've written code that will detect and prevent managed .NET debuggers and profilers from working. The code is in the public domain so anyone can use it should they find it useful. The difference between this code and other similar code is that this code can prevent a managed debugger and profiler from receiving messages. It also uses internal CLR variables to detect and prevent managed debuggers/profilers. The code has been tested on CLR 2.0 RTM - CLR 2.0 latest, CLR 4.0 RTM, x86 and x64.Code: https://bitbucket.org/0xd4d/antinetPart of the README follows here:Anti-managed debuggerMost anti-managed debugger code will call System.Diagnostics.Debugger.IsAttached somewhere …

    • 3 replies
    • 9.6k views
  2. Freefall63
    Started by Freefall63,

    Hey guys, I made some .v2m music on my own and would like to play them statically in vb 2008 .NET, because this is my favourite language. All I could find on the net was a c++ project, a delphi .dll and a vb 6 native project with a modified linker to link a v2m lib. Now I need to ask, is there any way? Greetz, Freefall - Attachment: My v2m music file and the magicv2m.dll delphi sound engine and some other useful stuff. V2.rar V2m plugins & projects.rar

      • Like
    • 62 replies
    • 27.7k views
  3. vdroy97
    Started by vdroy97,

    Hello Friends i am vijay studding in mca, i got a project in to find out key from your personal machine id, i try from long time but i cant solve this. here is given code Imports SystemImports System.IOImports System.ManagementImports System.Windows.FormsNamespace SecurityTest Friend Class productkey ' Methods Public Shared Function [date](ByVal st As String) As Integer Try Dim num As UInt64 = crypto.DecryptString(nconvert.toodec(st)) Dim hashCode As Integer = productkey.genrate.GetHashCode If (hashCode < 0) Then hashCode = (hashCode * -1) End If …

      • Like
    • 4 replies
    • 6.1k views
  4. Dumpper
    Started by Dumpper,

    Hi, At this time i have success load byte array contain assembly to application, Below sample script: //1. Load raw assembly from byte array Assembly SampleAssembly = Assembly.Load(byte_arr_assembly); //2. Launch Form Inside Assembley, Success if (SampleAssembly != null) { Type[] types = SampleAssembly.GetTypes(); foreach (Type type in types) { MethodInfo[] methodInfos = type.GetMethods(BindingFlags.Public | BindingFlags.Static); foreach (MethodInfo mf in methodInfos) { if (mf.Name == "Invoke") …

    • 2 replies
    • 4.9k views
  5. tim619
    Started by tim619,

    File Name: Keygen and Coding Sources File Submitter: tim619 File Submitted: 21 Jun 2011 File Category: Source Code Reupload, 14th of Sep. 2012 Hoster: Zippyshare Size: ~335mb Unpack using 7-Zip or WinRAR Download: Part 1 Part 2 Part 3 Part 4 Hope it's useful Click here to download this file

    • 7 replies
    • 10.4k views
  6. ghsafsdfsdhfghfgjhgkj
    Started by ghsafsdfsdhfghfgjhgkj,

    trterterhgfhf

      • Like
    • 22 replies
    • 11.9k views
  7. delphi789truno
    Started by delphi789truno,

    Hello i would like to know, how i can get actual upload/download speed, like DU Meter. can you give me source code Get Speed Upload/download modem for example

    • 2 replies
    • 6.8k views
  8. PiZZAMiN
    Started by PiZZAMiN,

    Okay, so I wanted to put an XM in a crack-me, but I can't figure out how to! I have AutoIT source, but playing from resources is very hard and dialogs are very annoying. I don't do vb6, and the .bas file doesn't work so here is the autoit source to play a file to prove i have checked docs and searched the web. #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3>$filedir = FileOpenDialog('Open the mod file', @ScriptDir, 'Mod files (*.xm)', 1)Global $bassdll = DllOpen("BASSMOD.dll") , $Init[1] Global $Chan, $Init, $VolLevel $Init = DllCall($bassdll, "int", "BASSMOD_Init", "int", …

    • 8 replies
    • 8.5k views
  9. 0xFF
    Started by 0xFF,

    This is hardcoded for version 3.3.6.5 (Build 3026 beta), it's not hard to make it work universally. i don't need this anymore, so i'm just dumping it here. Link: http://www.videoaccelerator.com/ SBVA Patch Src.rar

    • 1 reply
    • 4.7k views
  10. tonyweb
    Started by tonyweb,

    Hi guys/girls, I'm really new to Olly plugin writing, so I'm here to beg for your help. I'm writing a very simple plugin for Olly 1.10 that deals with bytes in CPU dump. I'm using Readmemory and Writememory functions and all works fine ... but modified bytes don't look like modified and I can't invoke undo action on them I'll explain better. When you do some action on CPU dump like "Binary | Fill With xxx" operations you end up with "red" modified bytes in the dump, bytes you can even restore back to their initial value. That's the effect I'd like to reproduce. Any pointer, hint or suggestion is appreciated (I'll understand if you'll give me a mouthful ) . Thanks i…

      • Like
    • 4 replies
    • 5.4k views
  11. _sb_

    I have already tried to study this problem and gather the most information I could but there still seems to be a problem. I have created a new winasm lib project and I did something like this: .586 .mmx .model flat, stdcall option casemap:none include static.inc .data .data? .const .code start: FxProc proc var:DWORD mov eax, var imul eax, 0123h Ret FxProc EndP end start the code of static.inc is as follows: .const FxProc proto :DWORD then I finally created a static.h wich I included in my main.c using #include "static.h" it is written as follows: __stdcall FxProc(unsigned int Var); after invoking : FxProc(123); my code will not even compile: 1>test1.obj : error LN…

    • 2 replies
    • 4.3k views
  12. hibernator
    Started by hibernator,

    Hi all, I am currently on a project which needs to compare the input signal from external source with a reference signal and give the frequency of Input signal .What would be the best and effecient way to do this ? Any help from you guys would mean a lot to me P.S. Implementing in MASM Regards.

      • Like
    • 1 reply
    • 8.5k views
  13. mrexodia
    Started by mrexodia,

    Hello Tuts4you, I'm working on a new project and for this tool I combined a few of my older tools in one tool with a 'simple' TabControl. Everything with drawing the window above the tabcontrol works fine, but I experienced quite some problems when I introduced the "OnTop" checkbox that makes the window topmost (obvious lol) First it works fine, but when I for example start Olly the background isn't redrawn. (See screenshot). I tried some code from a keygen template I made, but this only makes the window flicker. (http://forum.tuts4you.com/topic/30054-solved-c-winapi-transparent-editbox/#entry141998) I attached the source code of tabs.h, this handles all the tabs b…

    • 6 replies
    • 7.3k views
  14. Ufo-Pu55y
    Started by Ufo-Pu55y,

    First some infos: http://www.joachim-bauch.de/tutorials/load...ry.html/en/view I've tried to convert it into a C# class. Here's an example exe, to see what the class might be used for: Keygen.rar The example maps the native ufmod.dll from the resources into memory and then calls some of its functions to play a chiptune (also from resources). This way you don't have to save the dll to hard-disk before using it. And here's the full package: DMex.rar It contains: -the .net class library -a help file -2 example projects (vb.net and c#) As requested.. here's the source of the DMex class only: class_DMex_source.7z Have phun and post feedback, if it's useful some…

    • 35 replies
    • 34.2k views
  15. mrexodia
    Started by mrexodia,

    Hello everyone, Lately iLovro and me were working on nanomites and he came up with the idea to create a tool that recognizes the context struct automatically. Well, here the program is (source code included). Demo video with feature explaination: http://www.mediafire.com/?dk0ld5gtnkau2dd Download: http://tpodt.net16.net/files/RemoteContextInfo01_src.rar Greetings, Mr. eXoDia RemoteContextInfo01_src.rar RemoteContextInfo_demo.rar

    • 3 replies
    • 5.3k views
  16. DeadAndGone
    Started by DeadAndGone,

    removed

      • Like
    • 10 replies
    • 8.2k views
  17. cmhost
    Started by cmhost,

    Hello i have the following code i have problems with: // esp_dll.h #include <windows.h> #include "d3dx9.h" #include <d3d9.h> #pragma once using namespace System; namespace esp_dll { public ref class Class1 { void SetModelColor(LPDIRECT3DDEVICE9 pDevice, float r, float g, float b, float a, float glowr, float glowg, float glowb, float glowa) { float lightValues[4] = {r, g, b, a}; float glowValues[4] = {glowr, glowg, glowb, glowa}; pDevice->SetPixelShaderConstantF(1, lightValues, 1); pDevice->SetPixelShaderConstantF(3, glowValues, 1); } }; } Its not working when i try to call SetPixelShaderConstan…

    • 0 replies
    • 12.5k views
  18. novanakal
    Started by novanakal,

    hii all... iam new here,. i still learn for c++ i have some question. how bout this, i have 1 structure { i32 Index; i32 Total_Character; str[len=Total_Character] "Text"; }how to make some cpp header for that structure i make one { int Index; int Total_Character; char Text[Total_Character]; }; but still error when compiling thanks before

    • 1 reply
    • 12.3k views
  19. akrutsinger
    Started by akrutsinger,

    I'm wanting to create a settings dialog inside of my OllyDbg 2.xx plugin, but I'm stuck at the very first part; creating the dialog... This is the code I'm using right now (and have successfully used in many other win32 projects before) hSettings = CreateDialog(hollyinst, MAKEINTRESOURCE(IDD_SETTINGS), hwollymain, (DLGPROC)SettingsDialogProc); if(hSettings != NULL){ ShowWindow(hSettings, SW_SHOW); }else{ MessageBox(hwollymain, L"CreateDialog returned NULL", L"OllyID", MB_OK | MB_ICONINFORMATION); } With this hSettings always returns NULL. What am I missing?

      • Like
    • 3 replies
    • 5.4k views
  20. mjones
    Started by mjones,

    i'm having trouble linking a simple dll to do function detouring in windows. everything is pretty straightforward but i haven't been able to resolve these linking errors: test.obj : error LNK2005: "void * (__stdcall* pCreateFileW)(wchar_t const *,unsigned long,unsigned long,struct _SECURITY_ATTRIBUTES *,unsigned long,unsigned long,void *)" (?pCreateFileW@@3P6GPAXPB_WKKPAU_SECURITY_ATTRIBUTES@@KKPAX@ZA) already defined in main.obj Z:\test\Debug\test.dll : fatal error LNK1169: one or more multiply defined symbols foundhere is what i've done thus far. 1. installing detours - downloaded detours express 3.0 from http://research.micr...ojects/detours/ - added VC10\bin to %PATH…

      • Like
    • 6 replies
    • 6.9k views
  21. alaphate
    Started by alaphate,

    I built a simple dialog using c#. There are two textbox controls. One is readonly. Question is how to set the readonly property to false given only the released exe file. I used reshacker to open the exe, however no dialog resource displayed. Thank you for helping. Attchment is the exe application. hackForm.zip

    • 9 replies
    • 7.7k views
  22. ilker_6
    Started by ilker_6,

    weather watcher live (vb 5/6 native code) offline software is running, dew point and temperature values ​​I need to use the memory as a continuous variable to another program( c++ or masm,radasm ),I need to write a program like this, but how I can write. Can you help me in this subject.I'm sorry for my english is bad, I hope you understood my question.

  23. wxfengyun
    Started by wxfengyun,

    I wrote two games in masm32 by myself, one is the Russia Square, the other is swap mine. I think writing game is not very difficult, and these games' source code will help you coming into the game world. Please read the source code by yourself if you like these game. Projects.zip

    • 5 replies
    • 5k views
  24. 8bec
    Started by 8bec,

    Hi together, I'm looking for a framework I can use with python, beeing able to disassemble, debug, analyze, etc. I've already tried TitanEngine by reversinglabs, but had a lot of errors and found no help. So I think it's kinda dead. So is there a framework to use with python, that is still improved and with a active community? Thanks, 8bec

    • 5 replies
    • 6.5k views
  25. Pertic@n
    Started by Pertic@n,

    more info And Ref: http://gdtr.wordpres...izer-by-oreans/ Sources: https://github.com/pakt/decv Typical decompilation output: http://pastebin.com/etzbaUhB Regards

    • 1 reply
    • 6.1k views

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.