Skip to content

Instantly share code, notes, and snippets.

View Debagnik's full-sized avatar

Debagnik Kar Debagnik

View GitHub Profile
This process collects information from your Pi-hole, and optionally uploads it to a unique and random directory on tricorder.pi-hole.net.
The intent of this script is to allow users to self-diagnose their installations. This is accomplished by running tests against our software and providing the user with links to FAQ articles when a problem is detected. Since we are a small team and Pi-hole has been growing steadily, it is our hope that this will help us spend more time on development.
NOTE: All log files auto-delete after 48 hours and ONLY the Pi-hole developers can access your data via the given token. We have taken these extra steps to secure your data and will work to further reduce any personal information gathered.
*** [ INITIALIZING ]
[i] 2022-06-13:00:02:28 debug log has been initialized.
[i] System has been running for 0 days, 2 hours, 11 minutes
@Debagnik
Debagnik / HA_Infinity_Stones_CTF_WalkThrough
Last active June 27, 2021 06:17
In this CTF, we have been tasked with recovering all 6 of the Infinity Stones (flags), which are required to power Thanos’s Infinity Gauntlet. This machine contains 6 Infinity Stones (flags) which include the: 1> Space Stone 2> Mind Stone 3> Reality Stone 4> Time Stone 5> Power Stone 5> Soul Stone. We must recover these stones and help Thanos br…
HA Infinity stones logs
12:34 started
12:36 got the ip of the victim machine as 192.168.29.178 MAC vendor as PCS Systemtechnik GmbH.
12:44 nmap scan shows port 22, 80, 8080, and 443 open
12:45 a webpage on the ip hosted is displayed with a quiz in the eather button without submit button
12:58 the quiz was a hint to anothor web page as ./01101001 to led to a directorry with a file hints.txt with weird symbols
C:\Users\KIIT>pip install scikit-image==0.14.5
Collecting scikit-image==0.14.5
Using cached scikit-image-0.14.5.tar.gz (28.3 MB)
Requirement already satisfied: networkx>=1.8 in c:\users\kiit\appdata\local\programs\python\python38\lib\site-packages (from scikit-image==0.14.5) (2.4)
Requirement already satisfied: six>=1.10.0 in c:\users\kiit\appdata\local\programs\python\python38\lib\site-packages (from scikit-image==0.14.5) (1.14.0)
Requirement already satisfied: pillow>=4.3.0 in c:\users\kiit\appdata\local\programs\python\python38\lib\site-packages (from scikit-image==0.14.5) (7.2.0)
Requirement already satisfied: PyWavelets>=0.4.0 in c:\users\kiit\appdata\local\programs\python\python38\lib\site-packages (from scikit-image==0.14.5) (1.1.1)
Requirement already satisfied: cloudpickle>=0.2.1 in c:\users\kiit\appdata\local\programs\python\python38\lib\site-packages (from scikit-image==0.14.5) (1.5.0)
Requirement already satisfied: decorator>=4.3.0 in c:\users\kiit\appdata\local\programs\python\python38\lib\sit
clear all;
clc;
e1=0.1
Sys=tf([100],[2 20*e1 100])
subplot(2,3,1)
step(Sys)
title('Csy=0.1 Step Response')
@Debagnik
Debagnik / notepad.html
Created March 31, 2020 15:36 — forked from orrsella/notepad.html
Simple in-browser html notepad
data: text/html,
<html>
<head>
<title>Notepad</title>
<link rel="icon" type="image/png" href="http://icons.iconarchive.com/icons/hopstarter/sleek-xp-software/256/Notepad-icon.png">
<script src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#text').bind('keyup', function() {
var content = $(this).val();