This file contains 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
#!/bin/bash | |
rm -rf ~/Preferences/com.microsoft.SkypeForBusiness.plist | |
rm -rf ~/PLibrary/Containers/com.microsoft.SkypeForBusiness | |
rm -rf ~/Library/Logs/LwaTracing | |
rm -rf ~/Saved Application State/com.microsoft.SkypeForBusiness.savedState | |
rm -rf ~/Preferences/com.microsoft.SkypeForBusiness.plist |
This file contains 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
#!/bin/bash | |
rm -rf ~/Preferences/com.microsoft.SkypeForBusiness.plist | |
rm -rf ~/PLibrary/Containers/com.microsoft.SkypeForBusiness | |
rm -rf ~/Library/Logs/LwaTracing | |
rm -rf ~/Saved Application State/com.microsoft.SkypeForBusiness.savedState | |
rm -rf ~/Preferences/com.microsoft.SkypeForBusiness.plist |
This file contains 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
#!/usr/bin/env bash | |
app="test.app" | |
#shows sign info | |
codesign -dv $app | |
payload2="YourApp.app/embedded.mobileprovision" | |
#get sign info 2 |
This file contains 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
// | |
// main.m | |
// 101RACSamples | |
// | |
// Created by Matthew Doig on 1/26/14. | |
// Copyright (c) 2014 DWI. All rights reserved. | |
// | |
#pragma mark Asynchronous operators |
This file contains 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
# CVE-2018-4407 ICMP DOS | |
from scapy.layers.inet import IPOption, TCP, IP | |
from scapy.all import * | |
from scapy import * | |
if __name__ == '__main__': | |
try: | |
check_ip = sys.argv[1] | |
print('CVE-2018-4407 ICMP DOS - ' + check_ip) |
This file contains 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
#!/bin/bash | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# | |
sudo gem install fastlane -NV | |
# | |
sudo gem install cocoapods | |
# | |
gem install xcode-install | |
# |
This file contains 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
export LANG=en_US.UTF-8 | |
export LANGUAGE=en_US.UTF-8 | |
export LC_ALL=en_US.UTF-8 | |
ENVS=~/env | |
PATH_SCRIPTS="/Users/igorpopov/Library/Mobile Documents/com~apple~CloudDocs/Scripts/" | |
# path | |
export PATH=~/scripts/:$PATH:~/work/scripts/:$ENVS:$PATH_SCRIPTS | |
# parse envs |
This file contains 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
git clean -xfd | |
git submodule foreach --recursive git clean -xfd | |
git reset --hard | |
git submodule foreach --recursive git reset --hard | |
git submodule update --init --recursive |
This file contains 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
version: 2 | |
# TODO: get rid of ios/ in paths | |
jobs: | |
build-and-test: | |
macos: | |
xcode: "11.0" | |
steps: | |
- attach_workspace: |
This file contains 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
irb | |
require 'fastlane_core/device_manager' | |
FastlaneCore::Simulator.delete_all_by_version(os_version: "12.4") |