ALERT!
Click here to register with a few steps and explore all our cool stuff we have to offer!

Jump to content

MKM2's Content

There have been 4 items by MKM2 (Search limited from May 01, 2023)


By content type

See this member's

Sort by                Order  

#10034305 Hello! I'm Mortalkombatman2. My name couldn't fit though so I used MKM2.

Posted by MKM2 on 26 January 2018 - 05:37 AM in Introductions

MKM2's short for Mortalkombatman2 and I am quite new here. I'm still learning my way around the forum and finding things out about it. I plan to make a good impression upon this server and I came to get friends. The old forum I was on was called vermillion and I have grown to dislike that forum, sadly... It's given me some good and bad memories. My hobbies/interests are programming, crypting, reading, gaming, watching movies and youtube videos, listening to music, talking to people, and most of all, helping others. I plan on going into game development when I get older and I would like to get to know a lot of the members here. I am also hoping that people would help me out by talking to me via replying to this thread, contacting me on Discord, pm'ing me on nulled, or talking to me through another means of communication. cx




#10031893 Tutorial on manually converting plain text into binary and vice versa.

Posted by MKM2 on 26 January 2018 - 01:07 AM in Other languages

To start off, I will say this.

 

This requires dedication for memorizing two charts.

 

The first chart (text to hexadecimal):

spacebar=20
!=21
"=22
#=23
$=24
%=25
&=26
'=27
(=28
)=29
*=2A
+=2B
,=2C
-=2D
.=2E
/=2F
0=30
1=31
2=32
3=33
4=34
5=35
6=36
7=37
8=38
9=39
:=3A
;=3B
<=3C
= is 3D
>=3E
?=3F
A=41
B=42
C=43
D=44
E=45
F=46
G=47
H=48
I=49
J=4A
K=4B
L=4C
M=4D
N=4E
O=4F
P=50
Q=51
R=52
S=53
T=54
U=55
V=56
W=57
X=58
Y=59
Z=5A
[=5B
\=5C
]=5D
^=5E
_=5F
`=60
a=61
b=62
c=63
d=64
e=65
f=66
g=67
h=68
i=69
j=6A
k=6B
l=6C
m=6D
n=6E
o=6F
p=70
q=71
r=72
s=73
t=74
u=75
v=76
w=77
x=78
y=79
z=7A
{=7B
|=7C
]=7D
~=7E
=7F

The second chart (hexadecimal to binary):

0 = 0000
1 = 0001
2 = 0010
3 = 0011
4 = 0100
5 = 0101
6 = 0110
7 = 0111
8 = 1000
9 = 1001
A = 1010
B = 1011
C = 1100
D = 1101
E = 1110
F = 1111

Converting text into binary and vice-versa is a multi-step process.

 

I have found that generally the easiest way of explaining it is by following these steps:

1. Convert the text into Hexadecimal.

2. Split the hexadecimal characters up by a space.

3. Convert the Hexadecimal characters into the binary segments.

4. Close the spaces on the binary segments.

 

 

Here's an example:

 

Let's say we want to convert "The dog is sleepy." into binary.

 

Step one (which is memorizing the text to hexadecimal chart) is converting the text into hexadecimal.

 

"The dog is sleepy." becomes 54 68 65 20 64 6F 67 20 69 73 20 73 6C 65 65 70 79 2E

 

Step two is breaking the characters up. 54 68 65 20 64 6F 67 20 69 73 20 73 6C 65 65 70 79 2E becomes 5 4 6 8 6 5 2 0 6 4 6 F 6 7 2 0 6 9 7 3 2 0 7 3 6 C 6 5 6 5 7 0 7 9 2 E

 

Step three is converting the hexadecimal characters into the binary segments. 5 4 6 8 6 5 2 0 6 4 6 F 6 7 2 0 6 9 7 3 2 0 7 3 6 C 6 5 6 5 7 0 7 9 2 E becomes 0101 0100 0110 1000 0110 0101 0010 0000 0110 0100 0110 1111 0110 0111 0010 0000 0110 1001 0111 0011 0010 0000 0111 0011 0110 1100 0110 0101 0110 0101 0111 0000 0111 1001 0010 1110

 

Step four is merging the segments to form proper binary. 0101 0100 0110 1000 0110 0101 0010 0000 0110 0100 0110 1111 0110 0111 0010 0000 0110 1001 0111 0011 0010 0000 0111 0011 0110 1100 0110 0101 0110 0101 0111 0000 0111 1001 0010 1110 becomes 01010100 01101000 01100101 00100000 01100100 01101111 01100111 00100000 01101001 01110011 00100000 01110011 01101100 01100101 01100101 01110000 01111001 00101110

 

 

To convert binary to the text that you read, it is the steps but backwards:

1. Turn the binary into proper binary if it is not already in sections of 8.

2. Space it out every four characters into binary segments.

3. Convert the binary into hexadecimal characters.

4. Close the hexadecimal characters together.

5. Convert the hexadecimal characters into text that you can read.

 

 

Here's an example:

 

Let's say we want to convert the binary "01010100011010000110100101 110011001000000110001101100001011101000010000001 1101110110000101110011001000000110100 001110101011011100110011101110010011110010010000001100101011000010111001 00110110001101001011001010111001000101110" into text.

 

Step one is turning the binary into proper binary. 01010100011010000110100101 110011001000000110001101100001011101000010000001 1101110110000101110011001000000110100 001110101011011100110011101110010011110010010000001100101011000010111001 00110110001101001011001010111001000101110 becomes 01010100 01101000 01101001 01110011 00100000 01100011 01100001 01110100 00100000 01110111 01100001 01110011 00100000 01101000 01110101 01101110 01100111 01110010 01111001 00100000 01100101 01100001 01110010 01101100 01101001 01100101 01110010 00101110

 

Step two is breaking the binary into segments. 01010100 01101000 01101001 01110011 00100000 01100011 01100001 01110100 00100000 01110111 01100001 01110011 00100000 01101000 01110101 01101110 01100111 01110010 01111001 00100000 01100101 01100001 01110010 01101100 01101001 01100101 01110010 00101110 becomes 0101 0100 0110 1000 0110 1001 0111 0011 0010 0000 0110 0011 0110 0001 0111 0100 0010 0000 0111 0111 0110 0001 0111 0011 0010 0000 0110 1000 0111 0101 0110 1110 0110 0111 0111 0010 0111 1001 0010 0000 0110 0101 0110 0001 0111 0010 0110 1100 0110 1001 0110 0101 0111 0010 0010 1110

 

Step three is converting it into hexadecimal characters. 0101 0100 0110 1000 0110 1001 0111 0011 0010 0000 0110 0011 0110 0001 0111 0100 0010 0000 0111 0111 0110 0001 0111 0011 0010 0000 0110 1000 0111 0101 0110 1110 0110 0111 0111 0010 0111 1001 0010 0000 0110 0101 0110 0001 0111 0010 0110 1100 0110 1001 0110 0101 0111 0010 0010 1110 becomes 5 4 6 8 6 9 7 3 2 0 6 3 6 1 7 4 2 0 7 7 6 1 7 3 2 0 6 8 7 5 6 E 6 7 7 2 7 9 2 0 6 5 6 1 7 2 6 C 6 9 6 5 7 2 2 E

 

Step four is making the hexadecimal characters into proper hexadecimal. 5 4 6 8 6 9 7 3 2 0 6 3 6 1 7 4 2 0 7 7 6 1 7 3 2 0 6 8 7 5 6 E 6 7 7 2 7 9 2 0 6 5 6 1 7 2 6 C 6 9 6 5 7 2 2 E becomes 54 68 69 73 20 63 61 74 20 77 61 73 20 68 75 6E 67 72 79 20 65 61 72 6C 69 65 72 2E

 

Step five is converting the hexadecimal into the text that you're able to read. 54 68 69 73 20 63 61 74 20 77 61 73 20 68 75 6E 67 72 79 20 65 61 72 6C 69 65 72 2E becomes This cat was hungry earlier.

 

 

and that's all there really is to it. If there are ANY mistakes you see please inform me as I may have mistyped some part here due to it being so tedious, and if you have any questions or seek assistance in trying to understand it, you can always leave a comment down below asking your question and I will answer as soon as possible OR you can DM me on discord with your question. My discord is Mortalkombatman2#1455




#10016674 A menu template I made in Batch.

Posted by MKM2 on 25 January 2018 - 12:09 AM in Other languages

DL: https://mega.nz/#!foJRVAjB!1GlBEu_1S4HYTDDZGBsulqi5zEzBGSUEFhXHk78709g

 

VirusTotal: https://www.virustotal.com/#/file/5b312af17c4f1cddd8069706cbb765d06c7387eca97a4a4a05d2d72abb458d11/detection

 

Source code:

@echo off
title Mortalkombatman2's Menu Template
color 0a



Rem PUT THIS IN THE START OF THE SCRIPT ALWAYS
setlocal enableextensions enabledelayedexpansion

for /F "tokens=1,2 delims=#" %%a in ('"prompt #$H#$E# & echo on & for %%b in (1) do rem"') do ( set "DEL=%%a"
)

Rem UP TO THIS POINT, ALSO YOU CAN REMOVE THESE COMMENTS



:Variables
Set SelectedExampleMenuOption=1


:ExampleMenu
cls
if %SelectedExampleMenuOption% == 1 (
call :SetSelectionColor 1a "[SELECTED] Example option 1"
echo.
) else (
echo Example option 1
)
if %SelectedExampleMenuOption% == 2 (
call :SetSelectionColor 1a "[SELECTED] Example option 2"
echo.
) else (
echo Example option 2
)
if %SelectedExampleMenuOption% == 3 (
call :SetSelectionColor 1a "[SELECTED] Exit"
echo.
) else (
echo Exit
)
echo.
echo ---------------------------------------------------------------
choice /c wsf /n /m "Keys: W = Up , S = Down, and F = Select"

if %ERRORLEVEL% == 1 goto ExampleMenuScrollUp
if %ERRORLEVEL% == 2 goto ExampleMenuScrollDown
if %ERRORLEVEL% == 3 goto ExampleMenuSelectOption

:ExampleMenuScrollUp
if %SelectedExampleMenuOption% == 1 (
Set SelectedExampleMenuOption=3
goto ExampleMenu
) else (
Set /a SelectedExampleMenuOption=%SelectedExampleMenuOption%-1
goto ExampleMenu
)

:ExampleMenuScrollDown
if %SelectedExampleMenuOption% == 3 (
Set SelectedExampleMenuOption=1
goto ExampleMenu
) else (
Set /a SelectedExampleMenuOption=%SelectedExampleMenuOption%+1
goto ExampleMenu
)

:ExampleMenuSelectOption
if %SelectedExampleMenuOption% == 1 goto ExampleOption1
if %SelectedExampleMenuOption% == 2 goto ExampleOption2
if %SelectedExampleMenuOption% == 3 goto Exit



:ExampleOption1
cls
echo You have selected example option 1.
echo.
echo Press any key to be taken back to the main menu.
pause>nul
goto ExampleMenu


:ExampleOption2
cls
echo You have selected example option 2.
echo.
echo Press any key to be taken back to the main menu.
pause>nul
goto ExampleMenu

:Exit
cls
color 0c
echo Goodbye.
ping -n 3 127.0.0.1>nul
exit



Rem MAKE SURE YOU HAVE THIS PART AT THE BOTTOM OF THE PROGRAM

:SetSelectionColor
echo off
<nul set /p ".=%DEL%" > "%~2"
findstr /v /a:%1 /R "^$" "%~2" nul
del "%~2" > nul 2>&1
goto :eof

Rem YOU CAN REMOVE THESE COMMENTS

Gyazo gif of the program: https://gyazo.com/38fed8c4771257c80aeed8a5d2309f99

 

Note: Yes, I realize this could be made better / more efficiently but I made this about a year ago when I was still in the process of learning Batch.




#9990355 Any Rc7s for sale ( Roblox )

Posted by MKM2 on 23 January 2018 - 07:53 AM in Other languages

I don't believe anyone will be giving you RC7 whitelists or a cracked RC7 program on this forum, and RC7 is currently offsale. The maker of RC7 is on v3rmillion (another forum) and his sales open at times he needs money and close fast. Your best shot is to see if someone will buy you an account or buy an account yourself and wait to try to get lucky and get a sale from him.