A comprehensive 2-year program built from top university courses available on YouTube and OpenCourseWare platforms.
Duration: 24 months (2 years)
Time Commitment: 15-20 hours per week
| -- Cheat Engine Lua Script to Dump a DLL | |
| -- First, identify the target process. You can do this manually in Cheat Engine or use Lua: | |
| local processName = "Kaizen v92.exe" -- Replace with your target process | |
| openProcess(processName) | |
| -- Define the DLL name you want to dump | |
| local dllName = "Client.dll" -- Replace with the name of the DLL you want to dump | |
| -- Function to find the base address of the DLL in the target process |
| import java.io.IOException; | |
| import java.net.InetSocketAddress; | |
| import java.nio.ByteBuffer; | |
| import java.nio.channels.SelectionKey; | |
| import java.nio.channels.Selector; | |
| import java.nio.channels.ServerSocketChannel; | |
| import java.nio.channels.SocketChannel; | |
| import java.util.Iterator; | |
| import java.util.Queue; | |
| import java.util.concurrent.ConcurrentLinkedQueue; |
| function interceptNetworkRequests(ee) { | |
| const open = XMLHttpRequest.prototype.open; | |
| const send = XMLHttpRequest.prototype.send; | |
| const isRegularXHR = open.toString().indexOf('native code') !== -1; | |
| // don't hijack if already hijacked - this will mess up with frameworks like Angular with zones | |
| // we work if we load first there which we can. | |
| if (isRegularXHR) { |
| package io.nxz.interview.study.stack; | |
| public class CArrayStack<T> { | |
| private int currentSize; | |
| private T[] items; | |
| public CArrayStack(int initialSize) { | |
| this.items = (T[]) new Object[initialSize]; | |
| } |
| # Download direcotory recursively | |
| wget --no-parent --no-check-certificate -r https://the-eye.eu/public/AI/gptneo-release/GPT3_2-7B |
| foreach($Adapter in Get-NetAdapter) | |
| { | |
| New-NetIPAddress –IPAddress [IPAdresse] -DefaultGateway [Gateway] -PrefixLength [CIDR] -InterfaceIndex $Adapter.InterfaceIndex | |
| } |
0.02 (11 May 2005)
0.03 (26 May 2005)
0.04 (28 Jun 2005)
0.05 (14 Jul 2005)
| #!/bin/bash | |
| TOKEN= | |
| SEARCH=maplestory | |
| SORT=desc | |
| CREATED=2006-01-11T00:00:00Z | |
| mkdir "logs" & | |
| mkdir result & | |
| for i in {1..100} | |
| do | |
| url="https://api.github.com/search/repositories?q=$SEARCH&per_page=100&page=$i&created>=$CREATED&sort=created&order=$SORT" |
| { | |
| "root": true, | |
| "ignorePatterns": [ | |
| "projects/**/*" | |
| ], | |
| "overrides": [ | |
| { | |
| "files": [ | |
| "*.ts" | |
| ], |