Skip to content

Instantly share code, notes, and snippets.

View maycuatroi1's full-sized avatar

Nguyễn Anh Bình maycuatroi1

View GitHub Profile
// Comprehensive malware analysis script
const fs = require('fs');
console.log('=== VIRUS.JS MALWARE ANALYSIS ===\n');
// Read the file
const code = fs.readFileSync('virus.js', 'utf8');
// Analysis results
const analysis = {
function main()
output_image = 'output.png';
% Read image in grayscale
image = imread('9tjxfk.jpg');
if size(image, 3) == 3
image = rgb2gray(image);
end
% Create lookup table
import cv2
import numpy as np
def lookup_table_transform(image, table):
if len(table) != 256:
raise ValueError("Lookup table must have exactly 256 values")
lut = np.array(table, dtype=np.uint8)
if len(image.shape) == 2:
@maycuatroi1
maycuatroi1 / docker-compose.yaml
Last active September 27, 2024 02:57
Docker compose setup Airflow v2.8.4, start docker compose with `docker compose up --scale airflow-init=0`
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
@maycuatroi1
maycuatroi1 / sample.py
Last active March 27, 2024 12:17
Ứng dụng của toán trong đời sống săn sale
import numpy as np
def compute_perspective_transform_matrix(src_points, dst_points):
assert src_points.shape == dst_points.shape == (4, 2), "Cần có 4 điểm trong mỗi mảng"
# Xây dựng ma trận A
A = []
for i in range(4):
x, y = src_points[i][0], src_points[i][1]
--[[
Evadeee v0.958
by Weee
changelog: http://weee.ru/evadeee/dl/Evadeee_changelog.lua
]]
--Autoupdating (set to false if you want to disable it):
_G.Evadeee_AutoUpdate = false