Skip to content

Instantly share code, notes, and snippets.

View enterstudio's full-sized avatar
💭
acting busy- forking;

EnterStudios enterstudio

💭
acting busy- forking;
View GitHub Profile
@enterstudio
enterstudio / dns.txt
Created February 26, 2019 03:42 — forked from PacodiazDG/dns.txt
dns
www
mail
ftp
localhost
webmail
smtp
pop
ns1
webdisk
ns2
@enterstudio
enterstudio / offsec.md
Created February 24, 2019 23:26 — forked from jivoi/offsec.md
Penetrating Testing/Assessment Workflow

Penetrating Testing/Assessment Workflow & other fun infosec stuff

https://github.com/jivoi/pentest

My feeble attempt to organize (in a somewhat logical fashion) the vast amount of information, tools, resources, tip and tricks surrounding penetration testing, vulnerability assessment, and information security as a whole*

@enterstudio
enterstudio / gist:3216e751a7c2b144f81375bb90a19368
Created December 8, 2018 21:11 — forked from rtrouton/gist:2ca6f001b3cecb5037825c7f9d2e422e
Xcode iOS simulator download URLs (as of Xcode 8.3.1)
iOS 10.2 Simulator: https://devimages-cdn.apple.com/downloads/xcode/simulators/com.apple.pkg.iPhoneSimulatorSDK10_2-10.2.1.1484185528.dmg
iOS 10.1 Simulator: https://devimages-cdn.apple.com/downloads/xcode/simulators/com.apple.pkg.iPhoneSimulatorSDK10_1-10.1.1.1476902849.dmg
iOS 10.0 Simulator: https://devimages-cdn.apple.com/downloads/xcode/simulators/com.apple.pkg.iPhoneSimulatorSDK10_0-10.0.1.1474488730.dmg
iOS 9.3 Simulator: https://devimages.apple.com.edgekey.net/downloads/xcode/simulators/com.apple.pkg.iPhoneSimulatorSDK9_3-9.3.1.1460411551.dmg
iOS 9.2 Simulator: https://devimages.apple.com.edgekey.net/downloads/xcode/simulators/com.apple.pkg.iPhoneSimulatorSDK9_2-9.2.1.1451951473.dmg
iOS 9.1 Simulator: https://devimages.apple.com.edgekey.net/downloads/xcode/simulators/com.apple.pkg.iPhoneSimulatorSDK9_1-9.1.1.1446593668.dmg
iOS 9.0 Simulator: https://devimages.apple.com.edgekey.net/downloads/xcode/simulators/com.apple.pkg.iPhoneSimulatorSDK9_0-9.0.1.1443554484.dmg
iOS 8.4 Simulator: https://devimages.a
@enterstudio
enterstudio / iOS8 Beta Phonegap fix
Created December 8, 2018 05:28 — forked from EddyVerbruggen/iOS8 Beta Phonegap fix
iOS8 Beta Phonegap fix: manually set the navigator.userAgent
// temp fix for iOS8 beta 1 (fixed in beta 2), add it after the reference to cordova.js
if (navigator.userAgent === undefined) {
navigator.__defineGetter__('userAgent', function() {
return("Mozilla/5.0 (iPhone; CPU iPhone OS 8_0 like Mac OS X) AppleWebKit");
});
}
@enterstudio
enterstudio / gist:318efedc21bc89d2b5db21896cd8a6f1
Created December 5, 2018 02:30 — forked from rakhmad/gist:4043128
Jenkins, Xcode, Github, Testflight on a Mac Mini
  • Buy a mac mini
  • Install 10.8
  • Create a user account for Jenkins
  • Install xcode
  • Turn on screen sharing
  • Turn off energy save sleeping
  • Login as your jenkins user
  • Use ssh-keygen to create a key for github
  • Create a github account for your build machine
  • Add the key to your build machine github account
@enterstudio
enterstudio / coinhive-api.php
Created September 22, 2018 17:38 — forked from coinhive-com/coinhive-api.php
PHP class for the Coinhive HTTP API
<?php
class CoinHiveAPI {
const API_URL = 'https://api.coinhive.com';
private $secret = null;
public function __construct($secret) {
if (strlen($secret) !== 32) {
throw new Exception('CoinHive - Invalid Secret');
}
$this->secret = $secret;
}
@enterstudio
enterstudio / Ghost.json
Created August 7, 2018 22:18 — forked from sebgie/Ghost.json
Ghost Postman Collection
{
"id": "9e133283-a4b6-f10b-9017-3cecb199caf5",
"name": "Ghost",
"description": "",
"order": [
"a4c7e155-2226-b93a-4e7f-2ac4a627d1b3",
"1d854d60-f99b-a64d-a3c5-df0382cc617a",
"f5b3f80c-950d-5a16-65e5-37e33e6caa81",
"a65e4759-e61c-0880-f8a9-1967765c63f1",
"38db5f5d-fd17-614d-7fbe-341f7c5df8c5",
@enterstudio
enterstudio / dataMiner.js
Created July 25, 2018 18:34 — forked from mohamed-ali/dataMiner.js
dataMiner: simple, compact, reusable client side data mining
/*
* Copyright (c), Mohamed Ali Jamaoui, All rights reserved
* released under the MIT license
*/
var dm = {};
dm.dataMiner = function module(){
@enterstudio
enterstudio / Main.c
Created July 23, 2018 18:34 — forked from m2mIO-gister/Main.c
2lemetry RTX Application
/****************************************************************************
* Program/file: Main.c
*
* Copyright (C) by RTX A/S, Denmark.
* These computer program listings and specifications, are the property of
* RTX A/S, Denmark and shall not be reproduced or copied or used in
* whole or in part without written permission from RTX A/S, Denmark.
*
* DESCRIPTION: Co-Located Application (COLA).
*