Skip to content

Instantly share code, notes, and snippets.

View gris-gris's full-sized avatar
🗿
I may be slow to respond.

Alex Efimov gris-gris

🗿
I may be slow to respond.
View GitHub Profile
@gris-gris
gris-gris / gist:a91a381d823ac0af44f4ee3531e2dc15
Created April 20, 2017 07:32
Enable YouTube Experimental design
#### Write this in DOM console. (F12)
document.cookie="PREF=f6=4;path=/;domain=.youtube.com";

WannaCry|WannaDecrypt0r NSA-Cybereweapon-Powered Ransomware Worm

  • Virus Name: WannaCrypt, WannaCry, WanaCrypt0r, WCrypt, WCRY
  • Vector: All Windows versions before Windows 10 are vulnerable if not patched for MS-17-010. It uses EternalBlue MS17-010 to propagate.

SECURITY BULLETIN AND UPDATES HERE: https://technet.microsoft.com/en-us/library/security/ms17-010.aspx

Malware samples

@gris-gris
gris-gris / install-docker.sh
Created August 29, 2018 23:11
Install docker 17.03.2 Ubuntu Xenial
#!/bin/bash
sudo apt-get update
sudo apt-get install -y \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
@gris-gris
gris-gris / install-docker-centos.sh
Created August 29, 2018 23:58
Install docker 17.03.2 on Centos 7
#!/bin/bash
sudo yum install -y yum-utils \
device-mapper-persistent-data \
lvm2
sudo yum-config-manager \
--add-repo \
https://download.docker.com/linux/centos/docker-ce.repo
sudo yum install docker-ce -y
### Keybase proof
I hereby claim:
* I am torinoronin on github.
* I am torinoronin (https://keybase.io/torinoronin) on keybase.
* I have a public key ASDJp4AEjU4v_krzE31T53bJ3K6HeTSfxkDM551ufv7dbgo
To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am gris-gris on github.
  • I am grisgris (https://keybase.io/grisgris) on keybase.
  • I have a public key ASAGuKZykLVyt-DT_RDQWRUu5Drh_2UxjRNdjqHyB7P28go

To claim this, I am signing this object:

@gris-gris
gris-gris / zimbra-letsencrypt-renew.md
Last active July 5, 2023 18:20 — forked from ugurerkan/zimbra-letsencrypt-renew.md
Zimbra 8.6.0 Letsencrypt SSL renew walkthrough.
@gris-gris
gris-gris / console.sh
Last active December 13, 2023 03:22
Simple script for connecting to TuringPi2 Serial console from BMC SSH
#!/bin/sh
# Slot Devnode
# Slot 1 /dev/ttyS2
# Slot 2 /dev/ttyS1
# Slot 3 /dev/ttyS4
# Slot 4 /dev/ttyS5
if [ "$#" -ne 1 ]; then
echo "Usage: $0 <slot_number>"