Skip to content

Instantly share code, notes, and snippets.

@makamys
makamys / 1.7.10-security-vulnerabilities.md
Last active June 20, 2024 10:16
1.7.10 Security Vulnerabilities

1.7.10 Security Vulnerabilities

Having been released over 9 years ago, Minecraft 1.7.10 is no longer officially supported, which means it is up to the users to mitigate security vulnerabilities.

I cannot guarantee this list is complete or accurate, this is just a compilation of what I have learned.

Log4J CVE-2021-44228 ("Log4Shell")

Date discovered: 2021-12-10

@WamWooWam
WamWooWam / PlayGTAV.cs
Last active November 11, 2021 02:52
Replacement PlayGTAV.exe for the Epic Games Store version of Grand Theft Auto V
using System.Diagnostics;
using System.IO;
using Microsoft.Win32;
//
// If you replace PlayGTAV.exe in your game folder with this code, it'll fix two problems:
// - The game will launch successfully if you simply double click PlayGTAV.exe (it'll actually launch EGS properly)
// - You won't have to accept a UAC prompt every time you launch the game
// - If the exe doesn't find Rockstar Social Club, it'll try and install it from the default location
//
Все перенесено сюда
https://github.com/Pa4ok/MinecraftForSale
@chrisswanda
chrisswanda / WireGuard_Setup.txt
Last active July 4, 2024 05:39
Stupid simple setting up WireGuard - Server and multiple peers
Install WireGuard via whatever package manager you use. For me, I use apt.
$ sudo add-apt-repository ppa:wireguard/wireguard
$ sudo apt-get update
$ sudo apt-get install wireguard
MacOS
$ brew install wireguard-tools
Generate key your key pairs. The key pairs are just that, key pairs. They can be
# Для всех перечисленных тут уязвимостей имеются фиксы (или будут сделаны в ближайшее время)
CarpentersBlocks:
1) com.carpentersblocks.network.PacketActivateBlock
1.1) Открытие GUI некоторых блоков в приватах
IC2NuclearControl:
1) shedar.mods.ic2.nuclearcontrol.network.message.PacketClientColor
shedar.mods.ic2.nuclearcontrol.network.message.PacketClientDisplaySettings
shedar.mods.ic2.nuclearcontrol.network.message.PacketClientRangeTrigger
Реквизиты:
Qiwi: +79608624930
Яндекс.Деньги: 410011923274761
Skype: sk2000sk1
Telegram: gamerforEA
Discord: gamerforEA#8924
Зеркало на GitHub Gist: https://gist.github.com/gamerforEA/6c4a77255b95ba4354cc26758d3633da
@dideler
dideler / bot.rb
Last active June 12, 2024 08:48
Sending a notification message to Telegram using its HTTP API via cURL
# Use this script to test that your Telegram bot works.
#
# Install the dependency
#
# $ gem install telegram_bot
#
# Run the bot
#
# $ ruby bot.rb
#
@matthewzring
matthewzring / markdown-text-101.md
Last active July 8, 2024 01:54
A guide to Markdown on Discord.

Markdown Text 101

Want to inject some flavor into your everyday text chat? You're in luck! Discord uses Markdown, a simple plain text formatting system that'll help you make your sentences stand out. Here's how to do it! Just add a few characters before & after your desired text to change your text! I'll show you some examples...

What this guide covers:

@wavezhang
wavezhang / java_download.sh
Last active July 6, 2024 18:07
download java from oracle without login
wget -c --no-cookies --no-check-certificate --header "Cookie: oraclelicense=accept-securebackup-cookie" https://download.oracle.com/otn-pub/java/jdk/12.0.2+10/e482c34c86bd4bf8b56c0b35558996b9/jdk-12.0.2_linux-x64_bin.tar.gz
@justincjahn
justincjahn / README.md
Last active January 16, 2024 20:15
Minecraft server(s) using systemd and screen.

Install

# Install dependencies
sudo yum install -y java-1.8.0-openjdk screen

# Create a new unprivileged user for minecraft
useradd -r -m -d /opt/minecraft minecraft

# Create the directory that will house our minecraft instances

sudo su --shell /bin/bash minecraft