Per github/github/README.md:
This is GitHub.com and GitHub Enterprise.
But note I would have selected 'Enterprise' if it were an option. It could also be said to be Gist, or API, etc.
Vulnerability Class
| 10.3 (Panther): | |
| https://swscan.apple.com/scanningpoints/scanningpointX.xml | |
| 10.4 (Tiger): | |
| https://swscan.apple.com/content/catalogs/index.sucatalog | |
| https://swscan.apple.com/content/catalogs/index-1.sucatalog | |
| 10.5 (Leopard): | |
| https://swscan.apple.com/content/catalogs/others/index-leopard.merged-1.sucatalog |
| #!/bin/sh -x ## or just ` curl -Ls http://git.io/vRozn | sh `. | |
| ## Downloads the Mac OS X 10.10 Recovery Partition update, | |
| ## Copy's over the 10.10 version of Disk Utility.app, then | |
| ## use git to apply a binary patch so it will run on 10.11+. | |
| cd /tmp | |
| rm -rf DU1010 | |
| mkdir DU1010 |
| /* | |
| * cc -Wall -O3 -c macos-syscall.c -o macos-syscall.o | |
| * ld -static -macosx_version_min 10.12 -pagezero_size 0x1000 macos-syscall.o -o macos-syscall | |
| */ | |
| __attribute__ ((visibility("default"))) extern void start(void) asm("start"); | |
| #define NR_exit 0x2000001 | |
| #define NR_write 0x2000004 |
| #!/usr/bin/env swift | |
| // | |
| // REPL.swift | |
| // | |
| // Created by nuomi1 on 8/5/18. | |
| // Copyright © 2018年 nuomi1. All rights reserved. | |
| // | |
| import Foundation |
| #!/usr/bin/sudo sh | |
| ## ruby_revealer.sh -- decrypt obfuscated GHE .rb files. 2.0.0 to 2.3.1+. | |
| ## From `strings ruby_concealer.so`: | |
| ## | |
| ## > This obfuscation is intended to discourage GitHub Enterprise customers | |
| ## > from making modifications to the VM. | |
| ## | |
| ## Well, good, as long as its not intended to discourage *me* from doing this! |
| Step : | |
| 1. give credit card info | |
| 2. create project | |
| 3. after that you can create instance. | |
| 4. now install apcache by ssh: | |
| sudo apt get update |
| https://accounts.google.com/signin/v2/sl/pwd? | |
| service=mail | |
| &hl=en | |
| &uilel=1 | |
| &continue=https://www.gmail.com |
| // ARC4 by Ronald L. Rivest | |
| // Implementation by mooxmirror | |
| #include <stdio.h> | |
| #include <string.h> | |
| #include <stdlib.h> | |
| #include <assert.h> | |
| #define byte unsigned char | |
| #define STDIN_BUFFER_SIZE 8 |