Skip to content

Instantly share code, notes, and snippets.

View krypted's full-sized avatar

Charles Edge krypted

View GitHub Profile
let request = require('request');
console.log("Connecting to Salesforce");
console.log("");
let access_token_url = 'https://login.salesforce.com/services/oauth2/token';
let username = 'enter user name here';
let password = 'enter password here';
let client_id = 'enter client id here';
let client_secret = 'enter client secret here';
import requests
import json
import sys
print("Connecting to Salesforce")
print("")
access_token_url = 'https://login.salesforce.com/services/oauth2/token'
data = {
import requests
import json
import sys
print("Script Starting...")
print("")
access_token_url = 'https://login.salesforce.com/services/oauth2/token'
data = {
@krypted
krypted / MaMi.sh
Last active February 8, 2018 14:45
#!/bin/bash
#Get our list of DNS servers
servers=`networksetup -getdnsservers Wi-Fi`
#Start with this set to False - we'll change it to true if needed
foundInfected=false
#For each item in $servers
for ser in $servers; do
#If the current IP matches this IP
if [ $ser == '82.163.143.135' ]; then
class Logging(object):
__name__ = 'logger.info(1)'
plist = '/System/Library/Preferences/Logging/Subsystems/'
def __init__(__name__, plist, *args, **kwargs):
super(getLogger/, self).__init__()
logger.info('Input parameters:\n'
'accessibility: "{com.apple.Accessibility.plist}"\n'
@krypted
krypted / changeadforestmode.powershell
Last active May 7, 2016 22:09
Changes the Active Directory Forest Mode to Windows2008Forest and Domain Mode to Windows2008Domain
Import-Module -Name ActiveDirectory
Set-ADForestMode –Identity “krypted.com” –ForestMode Windows2008Forest
Set-ADDomainMode –Identity “krypted.com” –DomainMode Windows2008Domain
Get-ADForest | Format-Table Name , ForestMode
if [[ $USER != "root" ]]; then
echo "This script must be run as root"
else
echo "You are root"
exit 1
fi
#/bin/bash
#very dangerous as it unrecoverably removes all profilemanager data
sudo /Applications/Server.app/Contents/ServerRoot/usr/share/devicemgr/backend/wipeDB.sh
sudo serveradmin stop devicemgr
sudo serverctl disable service=com.apple.DeviceManagement.postgres
sudo rm -R /Library/Server/ProfileManager/Config/ServiceData/Data/backup
sudo rm -R /Library/Server/ProfileManager/Config/ServiceData/Data/PostgreSQL
sudo /Applications/Server.app/Contents/ServerRoot/System/Library/ServerSetup/CommonExtras/80-devicemgrcommon.sh