├── .gitignore ├── LICENSE ├── README.md ├── armageddon.txt ├── environment ├── bookmarks.html ├── log_everything │ ├── export_commands │ └── reinit_commands_record └── share.txt └── target.ctb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgtdede/oscp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgtdede/oscp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgtdede/oscp/HEAD/README.md -------------------------------------------------------------------------------- /armageddon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgtdede/oscp/HEAD/armageddon.txt -------------------------------------------------------------------------------- /environment/bookmarks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgtdede/oscp/HEAD/environment/bookmarks.html -------------------------------------------------------------------------------- /environment/log_everything/export_commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgtdede/oscp/HEAD/environment/log_everything/export_commands -------------------------------------------------------------------------------- /environment/log_everything/reinit_commands_record: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgtdede/oscp/HEAD/environment/log_everything/reinit_commands_record -------------------------------------------------------------------------------- /environment/share.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgtdede/oscp/HEAD/environment/share.txt -------------------------------------------------------------------------------- /target.ctb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgtdede/oscp/HEAD/target.ctb --------------------------------------------------------------------------------