Skip to content

Instantly share code, notes, and snippets.

Ubuntu 22.04 for Deep Learning

In the name of God

This gist contains steps to setup Ubuntu 22.04 for deep learning.


Install Ubuntu 22.04

@scarar
scarar / fuel-cms.py
Created February 27, 2025 18:44 — forked from anir0y/fuel-cms.py
#!/usr/bin/python3
# Exploit Title: fuelCMS 1.4.1 - Remote Code Execution
# Date: 2019-07-19
# Exploit Author: 0xd0ff9
# Vendor Homepage: https://www.getfuelcms.com/
# Software Link: https://github.com/daylightstudio/FUEL-CMS/releases/tag/1.4.1
# Version: <= 1.4.1
# Tested on: Ubuntu - Apache2 - php5
# CVE : CVE-2018-16763
@scarar
scarar / index.css
Created December 22, 2024 08:41 — forked from adrianhajdin/index.css
3D Portfolio Gists
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--blue-rgb: 237 245 255;
--green-rgb: 125 161 35;
}
@scarar
scarar / htb-flippin-bank-solution.py
Created May 15, 2023 15:22 — forked from captain-woof/htb-flippin-bank-solution.py
HackTheBox Flippin Bank Solution
from pwn.toplevel import remote, log
# Get ciphertext from encryption oracle for chosen username and password, and submit
# ciphertext as solution optionally
def get_username_password_ciphertext(username,password,ciphertext_to_submit = None):
r = remote(host,port)
r.sendafter("username: ",username)
r.sendafter("password: ",password)
r.recvuntil("Leaked ciphertext: ")
ciphertext = r.recvline().decode().rstrip()