Skip to content

Instantly share code, notes, and snippets.

View viktorchukhantsev's full-sized avatar

Viktor Chukhantsev viktorchukhantsev

View GitHub Profile
@viktorchukhantsev
viktorchukhantsev / my_jobs.rb
Created April 20, 2020 08:24
Simple jobs queue implementation on Ruby
module MyJobs
def self.backend
@backend
end
def self.backend=(backend)
@backend = backend
end
class Processor
@approovm
approovm / 00-android-bypass-certificate-pinning-and-mitm-attack-setup.md
Last active June 17, 2025 05:12
Certificate Pinning Bypassing: Setup with Frida, mitmproxy and Android Emulator with a writable file system
@miguelgmalpha
miguelgmalpha / gist:5c9e78d16312d156b0ec1d1c1bb09c1c
Last active April 22, 2025 19:13
AWS Client VPN with SAML for Fedora
The AWS Client VPN for Linux is only provided for Ubuntu as a .deb package. I need it for Fedora. This was tested on Fedora 33.
https://docs.aws.amazon.com/vpn/latest/clientvpn-user/client-vpn-connect-linux.html
Get the vpn client deb package.
```
curl https://d20adtppz83p9s.cloudfront.net/GTK/latest/awsvpnclient_amd64.deb -o awsvpnclient_amd64.deb
```
Install `alien` to convert the deb package to rpm.