Skip to content

Instantly share code, notes, and snippets.

View X3eRo0's full-sized avatar
🎯
Focusing

X3eRo0 X3eRo0

🎯
Focusing
View GitHub Profile
# vim:fileencoding=utf-8:ft=conf
# Font family. You can also specify different fonts for the
# bold/italic/bold-italic variants. By default they are derived automatically,
# by the OSes font system. Setting them manually is useful for font families
# that have many weight variants like Book, Medium, Thick, etc. For example:
# font_family Operator Mono Book
# bold_font Operator Mono Thick
# bold_italic_font Operator Mono Medium
# font_family Input Mono
unbind r
bind-key : command-prompt
bind-key r refresh-client
# set -g prefix C-s
set -sg escape-time 0
set-option -g focus-events on
set -g default-terminal "screen-256color"
set-option -sa terminal-features ',XXX:RGB'
set -g mouse on
@X3eRo0
X3eRo0 / bashrc
Last active November 25, 2023 01:39
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
@X3eRo0
X3eRo0 / exploit.py
Created March 13, 2023 05:07
UTCTF 2023 Sandbox Exploit
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# this exploit was generated via
# 1) pwntools
# 2) ctfmate
import os
import time
import pwn
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# this exploit was generated via
# 1) pwntools
# 2) ctfmate
import os
import time
import pwn
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# this exploit was generated via
# 1) pwntools
# 2) ctfmate
import os
import time
import zlib
@X3eRo0
X3eRo0 / csgo_fix.sh
Created January 19, 2022 07:34
fix csgo fps drop on linux with intel cpus
sudo systemctl stop thermald.service
sudo systemctl disable thermald.service
sudo apt install git build-essential python3-dev libdbus-glib-1-dev libgirepository1.0-dev libcairo2-dev python3-venv python3-wheel
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# this exploit was generated via
# 1) pwntools
# 2) ctfinit
import os
import time
import pwn
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdint.h>
#include <string.h>
#include <fcntl.h>
#include <signal.h>
#include <fcntl.h>
#include <sys/mman.h>
#include <sys/syscall.h>
@X3eRo0
X3eRo0 / exploit.py
Created April 8, 2021 15:33
HYPERION [Pwn] - Google CTF 2017 Finals Exploit
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# this exploit was generated via
# 1) pwntools
# 2) ctfinit
import os
import time
import pwn