Skip to content

Instantly share code, notes, and snippets.

View NullifyDev's full-sized avatar

Nullify NullifyDev

View GitHub Profile
@NullifyDev
NullifyDev / hosts
Created September 28, 2023 13:46
Hosts file configuration redirecting all in and out-going data collection requests. Modify C:\Windows\System32\drivers\etc\hosts to this state!
# Copyright (c) 1993-2009 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
@NullifyDev
NullifyDev / Brainfuck.cs
Last active April 13, 2023 10:42
Improved Version of the C# Brainfuck interpreter (https://gist.github.com/gszauer/f1a2e0beef15a73ac107) into 69 Lines of code (nice lmao)
using System;
namespace Brainfuck {
class MainClass {
private static void Sleep(int ms) => await Tak.Delay(ms);
public static void Main(string[] args) {
Console.WriteLine("Enter Command Buffer: ");
string cmdBuff = Console.ReadLine();
int[] memory = new[10];