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. djpolgio
    Started by djpolgio,

    I know this is not an easy one .... I tried with IFileIsInUse but works only if the Process uses it to lock the files. I tried also what suggested as "The Hard Way" here : hxxps://stackoverflow.com/questions/8726906/delphi-finding-the-process-that-is-accessing-a-file-from-my-program but seems not working either any idea ? Regards S

      • Thanks
      • Like
    • 4 replies
    • 7.1k views
  2. opc0d3
    Started by opc0d3,

    Hello guys, how are you all ? I trying to do a PoC about PEB hooking and at this point i just trying to code a dll that receives the call and pass to the original dll. I have the dlltest2.dll with 3 functions and in the nasm I am exporting these same 3 functions. I thought that if I did a LoadLibrary with the original the __imp_ would be the original function, but instead the NTDLL is loading my own nasm/dll functions on the IAT making a infinite loop... For example the function NOME goes to the IAT that it forced to ack to the same nasm/NONAME function instead of the dlltest2.dll/NONAME. I did this piece of code in NASM [BITS 32] global _start gl…

      • Like
    • 5 replies
    • 7.2k views
  3. LCF-AT
    Started by LCF-AT,

    Hi, just have a tiny question.So I was just looking for a small code what can send a minimize command for all open windows and also these who are not present in the taskbar and only using tray icon.So I found something like that... invoke FindWindow,chr$("Shell_TrayWnd"),0 invoke SendMessage,eax,WM_COMMAND,419,0 ....its also working to minimize all at once which are also present in taskbar but I also have running a other app which isnt present in taskbar and just using a try icon to show & minimize the window there and this keeps open.So what lpClassName parameter name I have to use for this to minimize that too? Shell_TrayWnd + ReBarWindow32 + TryNo…

      • Like
    • 5 replies
    • 5.8k views
  4. CodeExplorer
    Started by CodeExplorer,

    On x64 there is no need for fixing code section, so all worked ok. For x32 I have to change ImageBase (rebase) for code section. For doing that I have disassemble code section or at last parse instruction and add its size, then check for instructions I wanna fix, is there any MASM disassembler with source code?

      • Like
    • 5 replies
    • 4.9k views
  5. Ray
    Started by Ray,

    Hey, Can someone explain how I can get rid of all these crt and runtime crap? tried static link, no effect tried /MD -> /MT no effect thanks!

    • 1 reply
    • 6k views
  6. abbas
    Started by abbas,

    hi can anyone help me with compiling this piece of code? public static boolean xUFT() { return true; } iconst_1 1 ireturn private boolean GyLP() { return true; } iconst_1 1 ireturn public static String xUFT(String paramString1, String paramString2) { return null; } aconst_null areturn private String LCuJ() { return this.GyLP + "XXXXX"; } private gIbD(String paramString1, String paramString2, int paramInt) { this.GyLP = "XXXX"; this.PcqR = true; } aload_…

      • Like
    • 3 replies
    • 6.8k views
  7. CodeExplorer
    Started by CodeExplorer,

    CRC Cracker / Easy Crc calculator source Visual C++

      • Thanks
      • Like
    • 7 replies
    • 11.4k views
  8. LCF-AT
    Started by LCF-AT,

    Hi guys, I have a new small problem.I wrote a code entire code part and would like to make a extern asm file so that I can use / add it via include command in my main app.So the problem is if I do this then the extern asm file code will used as entry point = it runs this code first but I dont want this so.I also get other errors like this if I just wanna add any .asm files via include command... warning A4011: multiple .MODEL directives found : .MODEL ignored LINK : error LNK2001: unresolved external symbol _WinMainCRTStartup ...so the most present .asm files having model datas included.If I remove it then first error is gone but CRT error keeps.Below a exampl…

      • Thanks
      • Like
    • 6 replies
    • 7.2k views
  9. MindSystem
    Started by MindSystem,

    Hi, I would like to know how I can dump the section of a NATIVE executable using c# ? PS : the section I would like to dump is an added section (so not .text, .reloc, .rsrc) Thanks you

      • Thanks
      • Like
    • 7 replies
    • 5.6k views
  10. knight039
    Started by knight039,

    I am having a problem with a code, with the following message value was either too large or too small for an unsigned byte. code is private static void ByteWrite(IntPtr address, byte[] bytes) { int lpNumberOfBytesWritten = 2; Player.WriteProcessMemory((int) Proc.Handle, address, bytes, bytes.Length, ref lpNumberOfBytesWritten); } public static void UsarItem(int Slot) { Player.ByteWrite(new IntPtr(7875792), new byte[32] { (byte) 36, (byte) 0, (byte) 0, (byte) 0, (byte) 115, (byte) 3, Player.ClientID[0], Player.ClientID[1], (byte) 0, …

    • 1 reply
    • 7.1k views
  11. BreakShoot

    I am using the dnlib and I want to insert Console.ReadKey() at the end of the Console.WriteLines in another executable. Note I am extremely new to dnlib and wish to learn more about it. The code below partly works. Though the issue is. It produces the MSIL: IL_0028: call void [mscorlib]System.Console::ReadKey() When I want it to produce IL_015a: call valuetype [mscorlib]System.ConsoleKeyInfo [mscorlib]System.Console::ReadKey() Code ModuleDefMD mod = ModuleDefMD.Load(args[0]); ModuleDef mode = new ModuleDefUser(args[0]); Importer importer = new Importer(mod); AssemblyDef asmr = mod.Assembly;…

      • Like
      • Haha
      • Thanks
    • 9 replies
    • 6.7k views
  12. ragdog
    Started by ragdog,

    Hi I search a download link for Microsoft Detours 2.1 This website or download link to ms cannot connect or download from this site http://anonym.to/?http://research.microsoft.com/sn/detours Can any upload this libaray please? Thanks

      • Like
    • 10 replies
    • 13k views
  13. Perplex
    Started by Perplex,

    What is the equivalent in dnlib? MethodBase.IsGenericMethod; MethodBase.DeclaringType.IsGenericType;

      • Like
    • 1 reply
    • 6.4k views
  14. ghsafsdfsdhfghfgjhgkj
    Started by ghsafsdfsdhfghfgjhgkj,

    • 11 replies
    • 8.3k views
  15. opc0d3
    Started by opc0d3,

    Hello, folks! Here me again.. I'm trying to implement PEB hooking, but as you may know we have first to export the same symbol as the other dll exports... So i'm trying to do this with nasm. I dind't find yet a way to create a dll with def files on alink.. The idea is to import the dll inside the nasm.. define all the symbols my_OriginalDlllSymbol... inside all these fake symbols JMP to the original. I couldn't find a way to do this. NASM doesn't offer even any type of aliases to the imported symbol. ALINK seem doesn't support def files. EXPORTS my_OriginalDlllSymbol = OriginalDlllSymbol Any ideas ? Thanks in advance...

    • 1 reply
    • 4.9k views
  16. LCF-AT
    Started by LCF-AT,

    Hi guys, today I would like to ask something about CMD / console windows so I have again a little problem and need some help. Problem: I am trying to create a new GUI app and using a library from a commandline app.So everything ok so far so I can normaly use the functions of that library for my GUI app.Only problem I have now is that the original commandline app does also LOG informations into the console window and I just use a GUI without console window yet.I also see that the library still does LOG everything but I dont have a console window to see that infos into etc you know. My question is how to start a simple console window and what to use to see th…

      • Thanks
      • Like
    • 15 replies
    • 8.4k views
  17. udg
    Started by udg,

    the original cracktro for this release by "widowmaker" was broken and had alot bugs inside. I made a proper recode by this cracktro (Sourcecode attached to this post). - rewritten another HLSL waving shader onto the Logo (i like em more) - added drag cracktro screen with mouse - removed fullscreen support, (no demo or cracktro is working on my sys. (have 3 tft plugged)), so fullscreen won't work - removed the hidden credits screen when hit the "print screen" key on keyboard (was bugged too) - shrinked and fixed the soundfile original code: widowmaker (skidrow) gfx: ? sfx: ? fixed recode: inc. gfx: inc. sfx: ? …

    • 0 replies
    • 8.7k views
  18. SameerRaj
    Started by SameerRaj,

    Want To Have A An Android Devloper Who Can Maintain An App . Our Startup Budget Is 3,927.50 USD

    • 0 replies
    • 11.3k views
  19. LCF-AT
    Started by LCF-AT,

    Hi guys, so I would like to fetch entire datas from a dynamic JSON file but I have some problems to do it to update cookies without to work in browser directly.So some sites using such auto load functions if you do scroll up / down to show the actually content and or you have to click a button to let show more content if present etc you know what I mean right.Now I tried to find out how it works (checking traffic in webconsole) and how I could code something to do same without visiting the site but here I have the problem and dont know how to get entire content.Problem is it works with diffrent cookies which get changed like session and other id cookie entrys which I…

      • Like
    • 3 replies
    • 5.8k views
  20. Kurapica
    Started by Kurapica,

    Just a quick tutorial ... Mangled_C_C++.rar

    • 0 replies
    • 4.8k views
  21. opc0d3

    Hi guys! Me again.. I was trying to write a simple nasm printf program.. I did it.. it looks ok, but the printf is going to someplace in the middle of the binary that is nothing to do with the printf. I would like to ask, if anyone have ti, for some papers about nasm. I know the nasm documentation, but a more pratical (with examples) would be better. Thanks! My code: https://pastebin.com/PYwadQiW Compilation steps: nasm -fobj ./main.asm alink -oPE -entry _start ./main.asm Thanks! Regards.

      • Like
    • 4 replies
    • 5.4k views
  22. Lexity

    Lol sorry for making 3 threads about help, im a newbie. Anyways I've searched and searched but could not find. I'm trying to make a hwid login and how to get the hwid itself like when u click button and it puts the hwid on clipboard then a downloadstring of the link like host ("http://pastebin/") where it has liek the hwids stored and i can remove one or remove the whole thing ok thx if u can help

    • 5 replies
    • 5.8k views
  23. Lexity
    Started by Lexity,

    So basically when I put nothing in the username and pass box It works, but when I put wrong shit, It fails. Does any one know how to fix this login problem for my program? Login Source Code: string test = materialSingleLineTextField1.Text + ":" + materialSingleLineTextField2.Text; if (new WebClient().DownloadString("--CENSORED--").Contains(test)) { MessageBox.Show("Success"); new Form2().Show(); base.Hide(); } else { MessageBox.Show("Failed"); base.Close();

    • 4 replies
    • 5.4k views
  24. Lexity
    Started by Lexity,

    How do i make a login form with split char like username and pass with pastebin example "69:savage" like web client stuff.

      • Like
    • 3 replies
    • 7.3k views
  25. Amer
    Started by Amer,

    Anti-Debug Time Plugin for OllyDbg V.2 General Information Modern computer programs are more complex in writing and more difficult for reversing. Serious programs have various means of protection against debugging. It prevents application reversing. There are a number of various approaches, like Debug Blocker, Nanomites, others. Measuring time to identify that an application is being debugged becomes the widespread practice lately. The OllyDbg has the «HideOD» and «Hide Debugger» anti-debug plugins, which have no possibility to hide actual time. This causes difficulties in application reversing. Let’s consider the system of debugger identification. The debuggers are ca…

      • Like
    • 3 replies
    • 11.9k 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.