Skip to content

Instantly share code, notes, and snippets.

View ajtazer's full-sized avatar
🚩
idk

Anuj Rawat ajtazer

🚩
idk
View GitHub Profile
@ajtazer
ajtazer / yt-adhd.js
Created April 30, 2024 16:33
if anyone is like me and gets distracted from the lecture playlist often, paste this code in your browser console, and it will auto play the video 15 secs after you pausing it. Works great for my adhd.
async function checkAndResumeVideo() {
const videoElement = document.querySelector('video');
if (videoElement) {
if (videoElement.paused) {
await new Promise(resolve => setTimeout(resolve, 15000));//apne hisaab se time change karlo
videoElement.play();
@ajtazer
ajtazer / Cybersecurity AI Enabler Intern Interview
Created July 26, 2023 15:47
Cybersecurity AI Enabler Intern Interview for RediMind
Question: Tell us about a cybersecurity project or task you've worked on, highlighting any aspects that involved AI or ML.
Answer: I've worked on two cybersecurity projects:
RAT Testing: Testing various Remote Access Trojans (RATs) on different platforms and analyzing their code for features and vulnerabilities.
Emotion Detection using AI: Developing a machine learning model for emotion detection from facial expressions with over 90% accuracy.
Question: Describe a cybersecurity challenge you faced and how you addressed it. How did this experience contribute to your understanding of the field?
Answer: I participated in the IIT Roorkee CTF event and creatively gained root access to a Linux system. This taught me the importance of creativity, understanding system mechanics, and tools/techniques.
import hashlib
import time
# Get 100 input strings
inputs = []
print("Enter 100 input strings:")
for i in range(100):
inputs.append(input())
# Hash each input using MD5 and concatenate the results
#!/bin/bash
filename="flag_999.tar.gz"
while [[ -f $filename ]]
do
tar -xzf "$filename"
rm "$filename"
filename=$(ls | grep ".tar.gz" | tail -1)
done
@ajtazer
ajtazer / Microsoft_Login.html
Created January 7, 2023 18:21
Responsive Microsoft Login Page For Roundtable Recruitment task
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Microsoft Login</title>
</head>
<body>
<!-- css start -->
@ajtazer
ajtazer / G!tHub RDP
Last active May 16, 2022 16:19
2 accounts suspended, lmaodedxd.. hope this trick works again in future well
████████████████████████████████████
██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██
██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██
██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██
██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██
██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██
██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██
██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██
██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██
██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██
@ajtazer
ajtazer / P4r411315 8U51N355 4C71V4710N K3Y.txt
Created January 3, 2022 14:17
Parallels Business Activation Key
Parallels Business Activation Key
6YDASE-890T7S-E5YFS6-54F6YW-4780JY
390349-032409-342340-932902-390693
@ajtazer
ajtazer / jeerankcalc.ipynb
Last active May 12, 2023 12:43
JeeRankCalc.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ajtazer
ajtazer / gist:65b9cbee7a3fe0b31105ccef05a5c115
Created April 27, 2021 15:54
Demon Slayer Mugen Train
https://discord.com/invite/2aAtEQQgNb
Demon Slayer: Kimetsu no Yaiba the Movie: Mugen Train 1080p English Subbed
Drive Link 1 -
https://drive.google.com/file/d/1gZQFHixUmlNfdY9Y-SSFgFAu9mRkSHZ1/view?usp=sharing
Drive Link 2 -
https://drive.google.com/file/d/16I80cAgcPTgfaOPwAwuUZGWN3gn4V72t/view?usp=sharing
@ajtazer
ajtazer / PYTHON File Handling Operations.py
Created March 31, 2021 16:52
Python Class 12 Computer Science Important Practicals Programs (CBSE and Other Boards) P.S. You Ask for Other Programs Too :-)
#Opening with 'WITH' method
with open('boi.txt','w') as f:
#Write mode can create file
#As long as code is written in this block
#There is no need to Close File
#File will be automatically closed for
#code out of this block.
f.writelines(['This Function\n',
'Takes Argument or Input\n',