- Visual Studio Build Tools 2022
- Visual Studio Build Tools 2019
- Visual Studio Build Tools 2017
- Visual Studio Build Tools 2015
Visual Studio 2022:
/* | |
* This demonstrates how to interact with a VMware virtual machine using VIX API. | |
* It performs various guest operations on a Linux VM including: | |
* - Getting system information using 'uname' | |
* - Getting current directory using 'pwd' | |
* - Handling file operations and command execution | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> |
/* | |
* This demonstrates how to interact with a VMware virtual machine using VIX API. | |
* It performs various guest operations on a Linux VM including: | |
* - Getting system information using 'uname' | |
* - Getting current directory using 'pwd' | |
* - Handling file operations and command execution | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> |
#include <iostream> | |
#include <windows.h> | |
#include <setupapi.h> | |
#include <winscard.h> | |
#include <string> | |
#include <string_view> | |
#include <future> | |
#include <atomic> | |
#include <chrono> | |
#include <thread> |
// addscn.cpp : Defines the entry point for the console application. | |
// | |
#include "stdafx.h" | |
#include <iostream> | |
#include <windows.h> | |
#include <string> | |
#include <memory> | |
#include <system_error> | |
#include <sstream> |
import ida_kernwin | |
import ida_idaapi | |
import ida_name | |
import ida_funcs | |
import idautils | |
import idc | |
class ExitFinder(ida_kernwin.Choose): | |
def __init__(self): | |
ida_kernwin.Choose.__init__(self, |
#include <iostream> | |
#include "hokk.hpp" | |
using memcmp_t = int(__cdecl*)(const void* buf1, const void* buf2, size_t count); | |
int __cdecl hk_memcmp(const void* buf1, const void* buf2, size_t count) { | |
printf("[DEBUG] Hook called!\n"); | |
printf("[DEBUG] First buffer: %.*s\n", (int)count, (char*)buf1); | |
printf("[DEBUG] Second buffer: %.*s\n", (int)count, (char*)buf2); | |
printf("[DEBUG] Compare length: %zu\n", count); |
#!/usr/bin/env python | |
import sys | |
from peepdf.PDFCore import PDFParser, PDFObject, PDFDictionary | |
def check_cyrillic_support(pdf_file): | |
parser = PDFParser() | |
ret, pdf = parser.parse(pdf_file) |
import datetime | |
from decimal import Decimal | |
class Transaction: | |
def __init__(self, date, amount, description, transaction_type): | |
self.date = date | |
self.amount = Decimal(amount) | |
self.description = description | |
self.transaction_type = transaction_type # 'income' or 'expense' |
see comments |