ru
Feedback
کانال بایت امن

کانال بایت امن

Открыть в Telegram

برگزاری دوره های آموزش برنامه نویسی و امنیت نرم افزار. https://dword.ir @YMahmoudnia

Больше
4 811
Подписчики
-124 часа
+167 дней
+3030 день
Архив постов
#Source #PE این مجموعه که شامل سورس‌های مربوط به پکرها و پروتکتورها است را طی سال‌ها جمع‌آوری کرده و در سال ۲۰۱۴ در فروم Exetools به اشتراک گذاشتم. از دوستانی که در جمع‌آوری این منابع عالی به من کمک کردند، سپاسگزارم. این مجموعه شامل سورس پکرها و پروتکتورهایی است که با زبان‌های برنامه‌نویسی مانند C، C++، ASM، Delphi و VB نوشته شده‌اند. اگر به موضوعات PE و برنامه‌نویسی پکرها و پروتکتورها علاقه دارید، این بسته برای شما مناسب است. اگر شما هم می‌توانید در جمع‌آوری منابع بیشتر کمک کنید، با من در ارتباط باشید. 🌐 @YMahmoudnia 🦅 کانال بایت امن | گروه بایت امن _

#Source #PE I have been collecting this package, which includes sources for packers and protectors, for years and shared it on the Exetools forum in 2014. I am grateful to the friends who helped me gather this excellent resource. This collection includes packers and protectors written in programming languages such as C, C++, ASM, Delphi, and VB. If you are interested in PE topics and programming packers and protectors, this package is ideal for you. Exetools link: https://forum.exetools.com/showthread.php?t=16128 If you can also help in collecting more sources, please get in touch with me. 🌐 @YMahmoudnia 🦅 کانال بایت امن | گروه بایت امن _

#چالش جواب صحیح : گزینه اول یعنی "خیر" مفهوم پارامتر و آرگومنت در فانکشن ها با هم تفاوت دارند. پارامتر ها، متغیرهایی هستند که توسط یک تابع تعریف می شوند که هنگام فراخوانی تابع مقادیری را دریافت می کنند. در حقیقت پارامتر یک نگه دارنده برای مقادیر واقعی که به تابع منتقل می شوند عمل می کنند. آرگومنت ها، مقادیر واقعی هستند که در هنگام فراخوانی تابع به آن ارسال می شوند.
#include <stdio.h>

// 'message' is not a real variable and it is a parameter
void SampleFunction(const char* message)
{
    printf_s("Message: %s\n", message);
}

int main()
{
    char message[] = "Hello DWORD!";

    // 'message' is a real variable and it is an argument
    SampleFunction(message);

    int c = getchar();
    return 0;
}
مشابه این موضوع، مفاهیم Declaration و Definition هستند که بعضا باهم اشتباه گرفته می شوند. 🦅 کانال بایت امن | گروه بایت امن _

آیا پارامتر (Parameter) و آرگومنت (َArgument) در فانکشن ها دارای مفهوم یکسانی هستند ؟
Anonymous voting

#چالش جواب صحیح گزینه آخر یعنی : حداقل به 7 روش امکان انتساب وجود دارد. برای درک بیشتر تکه کد زیر را بررسی کنید.
char chrSign[] = "DWORD.IR";
    

// 01. Array Index Assign
char array01[] = "DEFUALT_RAW_DATA";
SecureZeroMemory(array01, sizeof(array01));
array01[0] = 'D';
array01[1] = 'W';
array01[2] = 'O';
array01[3] = 'R';
array01[4] = 'D';
array01[5] = '.';
array01[6] = 'I';
array01[7] = 'R';
    
// 02. Pointer Assign
char* array02 = "DWORD.IR";
array02 = "SecureByte.IR";

// 03. Assign With STR Functions
SecureZeroMemory(array01,sizeof(array01));
strcpy_s(array01, sizeof(array01), chrSign);

// 04. Assign With MEM Functions
SecureZeroMemory(array01, sizeof(array01));
memcpy_s(array01, sizeof(array01), chrSign, strlen(chrSign) + 1);

// 05. Assign With LSTR Functions
SecureZeroMemory(array01, sizeof(array01));
lstrcpyA(array01, chrSign);

// 06. Assign With SPRINTF
SecureZeroMemory(array01, sizeof(array01));
sprintf_s(array01, sizeof(array01), "%s", chrSign);
   
// 07. Assign With Inputs
SecureZeroMemory(array01, sizeof(array01));
scanf_s("%17s", array01, (unsigned)_countof(array01));

// 08. Assign With External Inputs
// Registry, Files and etc...
🦅 کانال بایت امن | گروه بایت امن _

در زبان برنامه نویسی C حداقل به چند روش می توان عملیات انتساب رشته ها را انجام داد.
Anonymous voting

#Tools #Debugger CpuDbg is a debugger that supports all platforms, including but not limited to Windows Android Iphone as wel
#Tools #Debugger CpuDbg is a debugger that supports all platforms, including but not limited to Windows Android Iphone as well as WEB and hardware platforms. دیباگر ویندوزی CpuDbg برگرفته از دیباگر قدیمی و مشهور OllyDbg اما با قابلیت های بیشتر. 🦅 کانال بایت امن | گروه بایت امن _

#DWORD #CPL1 ▶️ ویدیو جلسه پنجاه و سه "دوره آموزش زبان برنامه نویسی C | سطح مقدماتی - متوسط" ⏳مدت زمان :21 دقیقه فصل دهم : Data Structures | Array فانکشن های کاربردی در آرایه ها بخش اول ▪️بررسی فانکشن memset , ZeroSecureMemory و RtlSecureZeroMemory ▪️بررسی فانکشن های memcpy و memcpy_s ▪️بررسی فانکشن memcmp ▪️بررسی الگوریتم های Sort به صورت نزولی و صعودی ▪️بررسی الگوریتم های Shift Right و Shift Left 🦅 کانال بایت امن | گروه بایت امن _

#eBook #WindowsPE #DWORD 🏳️باز نویسی و ترجمه کتاب Windows PE权威指南 🔥 این کتاب به‌طور جامع و مفصل به تحلیل فرمت فایل PE و تکنی
#eBook #WindowsPE #DWORD 🏳️باز نویسی و ترجمه کتاب Windows PE权威指南 🔥 این کتاب به‌طور جامع و مفصل به تحلیل فرمت فایل PE و تکنیک‌های برنامه‌نویسی مرتبط با آن می‌پردازد و جنبه‌های مختلف امنیتی و مدیریت پروسس های سیستمی و مکانیسم‌های سطح پایین آن را مورد بررسی قرار می‌دهد.
با توجه به تاریخ انتشار کتاب Windows PE权威指南 که به زبان چینی و در سال 2011 به چاپ رسیده است، در بازنویسی این کتاب سعی کرده‌ام مطالب و ابزارهای قدیمی را حذف کنم و از نرم‌افزارهای به‌ روز و مطالب جدید استفاده کنم. به همین دلیل ممکن است بعضی از موضوعات به‌طور کامل تغییر یا جایگزین شوند و یا حتی بر حسب نیاز مطالب جدیدی اضافه گردند.
سطح مطالب این کتاب پیشرفته است و موضوعاتی که مطرح می‌شوند ممکن است نیاز به داشتن پیش‌نیاز باشند. به طور مثال، کدنویسی پروژه‌ها به زبان اسمبلی و در محیط برنامه‌نویسی انجام می‌شود، بنابراین شما باید زبان اسمبلی را بدانید و با محیط برنامه‌نویسی به زبان اسمبلی آشنایی داشته باشید. تمرکز این کتاب بر تشریح ساختار فایل‌های PE خواهد بود و به آموزش پیش‌نیازها یا سایر موارد اشاره نخواهیم کرد. با این حال، در هر فصل بخشی تحت عنوان منابع وجود دارد که برای درک و آشنایی بیشتر شما با بعضی مطالب، منابع مناسبی معرفی خواهند شد.
فصل اول : محیط توسعه Windows PE تعداد صفحات : 29 صفحه 💎دریافت فصل اول | گیتهاب کتاب 🦅 کانال بایت امن | گروه بایت امن _

#Tools ورژن 0.9 HyperDbg ریلیز شد! ✨ 🔗 Check it out: https://github.com/HyperDbg/HyperDbg/releases/tag/v0.9.0 📖 Read more: https://docs.hyperdbg.org/commands/extension-commands/monitor # Added - The !monitor command now physical address hooking - hwdbg is merged to HyperDbg codebase - strncmp(Str1, Str2, Num), and wcsncmp(WStr1, WStr2, Num) functions in script engine # Changed - Using a separate HOST IDT in VMCS (not OS IDT) - Using a dedicated HOST GDT and TSS Stack - Checking for race-condition of not locked cores before applying instant-events and switching cores - The error message for invalid address is changed (more information) - Fix the problem of not locking all cores after running the '.pagein' command 🦅 کانال بایت امن | گروه بایت امن _

#ShortTutorial How To Compile libcurl For Windows (8.8.0) 🦅 کانال بایت امن | گروه بایت امن _

#Tools #Programming Portable VS Build Tools installer Downloads standalone 64-bit MSVC compiler, linker & other tools, also h
#Tools #Programming Portable VS Build Tools installer Downloads standalone 64-bit MSVC compiler, linker & other tools, also headers/libraries from Windows SDK, into a portable folder, without installing Visual Studio. با استفاده از این ابزار و بدون نیاز به نصب ویژوال استادیو می توانید کامپایلر MSVC را دانلود و استفاده کنید. این ابزار با استفاده از نسخه MSVC و نسخه Windows SDK مورد نظر شما، اینکار را انجام می دهد. 🦅 کانال بایت امن | گروه بایت امن _

تاپیک های پشتیبانی، پرسش و پاسخ (فارسی زبان) دیباگر های HyperDbg و CM64 در گروه عمومی بایت امن 🔥 تاپیک مرتبط با HyperDbg 🔥
تاپیک های پشتیبانی، پرسش و پاسخ (فارسی زبان) دیباگر های HyperDbg و CM64 در گروه عمومی بایت امن 🔥 تاپیک مرتبط با HyperDbg 🔥 تاپیک مرتبط با CM64 🦅 کانال بایت امن | گروه بایت امن _

#ShortTutorial How to Change DRMSoft HardwareID 🦅 کانال بایت امن | گروه بایت امن _

#ShortTutorial How to Deal With Password Protect Video Master (PPVM) Integrity Check 🦅 کانال بایت امن | گروه بایت امن _

#Tools #Debugger SoftICE-like kernel debugger for Windows 11 Features : Support for Windows XP up to Windows 11, x86 and x64,
#Tools #Debugger SoftICE-like kernel debugger for Windows 11 Features :
Support for Windows XP up to Windows 11, x86 and x64, and SMP kernels. Support for WOW64 processes on x64. Integration of QuickJSPP, which is a port of QuickJS to MSVC++. Before calling QuickJS, BugChecker saves the FPU state (on x86) and switches to an expanded stack of 128KB. Commands accept JS expressions. For example, "U rip+rax*4" and "U MyJsFn(rax+2)" are valid commands. Custom functions can be defined in the Script Window. CPU registers are declared as global scope variables automatically by BugChecker. Support for PDB symbol files. PDB files can be specified manually or Symbol Loader can download them from a symbol server. JavaScript code can call the following asynchronous functions: WriteReg, ReadMem, WriteMem. Breakpoints can have a JS condition: if condition evaluates to 0, no "breakin" happens. This allows to set "Logpoints" and breakpoints that can change the flow of execution. Log window shows the messages sent to the kernel debugger (for example DbgPrint messages). JavaScript window with syntax highlighting. The tab key allows, given few digits, to cycle through all the hex numbers on the screen or, given few characters, to cycle through all the symbols containing those characters. EASTL and C++20 coroutines make creating new commands a breeze. Feel free to send your pull requests!
🦅 کانال بایت امن | گروه بایت امن _

#Tools #Debugger CM64 a x64 freezer/debugger for windows. Features : Simple and familiar user interface Hexbased expression p
#Tools #Debugger CM64 a x64 freezer/debugger for windows. Features :
Simple and familiar user interface Hexbased expression parser Full-featured kernel memory edit, save and load Follow jump and back Memory map Modules thread view Register view Full memory search Fast assmbler/disassembler (Zydis 4.0.0) Plugin support with growing API ASCII/Hex memory dump Dynamic stack view Executable patching Game cheat engine trainer Full IO ports read and write Windows service API investigator Save and load binary files Virtual / physical address converter and mapper Full PCI bus viewer Full kernel drivers structre viewer Full user mode processes structure viewer Full system BIOS structure viewer System ACPI structure viewer Special boot control featrure Debug Windows kernel and processes without Windows global flag enabled or any process in debug mode
🦅 کانال بایت امن | گروه بایت امن _