Skip to content

Commit

Permalink
2024.5.14
Browse files Browse the repository at this point in the history
  • Loading branch information
sh1yan committed May 14, 2024
1 parent 7d50de8 commit 28877a2
Show file tree
Hide file tree
Showing 11 changed files with 1,628 additions and 0 deletions.
Binary file modified .DS_Store
Binary file not shown.
Binary file added vncpwd/.DS_Store
Binary file not shown.
674 changes: 674 additions & 0 deletions vncpwd/LICENSE

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions vncpwd/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
CFLAGS = -Wall -g
PREFIX = /usr
BINDIR = ${PREFIX}/bin

all:
gcc ${CFLAGS} -o vncpwd vncpwd.c d3des.c

install:
install -D -m 755 vncpwd ${DESTDIR}${BINDIR}/vncpwd

clean:
rm vncpwd
30 changes: 30 additions & 0 deletions vncpwd/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
VNC Password Decrypter

It decrypts the stored vnc password.


COMPILE
Just run make or gcc -o vncpwd vncpwd.c d3des.c

USAGE
vncpwd <vnc password file>

EXAMPLE
$ vncpwd .vnc/passwd
Password: helloworld


Copyright (c) 2018 Jeroen Nijhof <[email protected]>

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Loading

0 comments on commit 28877a2

Please sign in to comment.