This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Android ssl certificate pinning bypass script for various methods | |
| by Maurizio Siddu | |
| Run with: | |
| frida -U -f <APP_ID> -l frida_multiple_unpinning.js [--no-pause] | |
| */ | |
| setTimeout(function() { | |
| Java.perform(function() { | |
| console.log(''); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * open_rootkit.c - Thomas Moussajee | |
| * C Unix Rootkit open | |
| * Make a file forbiden for everyone include root with permission | |
| * HOW TO COMPILE : create a Makefile, make | |
| * exemple of Makeflle : | |
| + KERNELDIR ?= /lib/modules/$(shell uname -r)/build | |
| + PWD := $(shell pwd) | |
| + NAME = rootkit.ko | |
| + all: $(NAME) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Copyright 2016 Henric Andersson | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ############################################################################################################# | |
| ## | |
| ## 2004-01-09 새로운 구조로 최초 작성 | |
| ## 01-29 템플릿 구성 시작 | |
| ## 10-05 NOTEPAD 샘플 작성 | |
| ## | |
| ## NSIS 예제 파일 작성 : hardkoder@gmail.com ( www.kipple.pe.kr ) | |
| ## | |
| ############################################################################################################# |