<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[الفريق العربي للهندسة العكسية - برامج الدوت نت - Dot Net Reversing Tools]]></title>
		<link>https://www.at4re.net/f/</link>
		<description><![CDATA[الفريق العربي للهندسة العكسية - https://www.at4re.net/f]]></description>
		<pubDate>Sat, 18 Apr 2026 02:51:08 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[الهندسة العكسية لتطبيقات .NET باستخدام dnSpy]]></title>
			<link>https://www.at4re.net/f/thread-5090.html</link>
			<pubDate>Sun, 22 Mar 2026 23:58:50 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.at4re.net/f/member.php?action=profile&uid=6674">islam</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.at4re.net/f/thread-5090.html</guid>
			<description><![CDATA[? مقدمةالهندسة العكسية (Reverse Engineering) في بيئة .NET Framework تعني تحليل الملفات التنفيذية (EXE / DLL) لفهم كيفية عملها داخليًا دون توفر الكود المصدري.<br />
السبب الرئيسي لسهولة هذه العملية نسبيًا في .NET هو أن الكود لا يُحوَّل مباشرة إلى Machine Code، بل إلى <span style="font-weight: bold;" class="mycode_b">IL (Intermediate Language)</span>، وهو تمثيل وسيط قابل لإعادة البناء.<br />
<hr class="mycode_hr" />
? كيف يعمل برنامج .NET داخليًا؟عند كتابة كود C#:<br />
<br />
 if (isValid)<br />
RunApp();يتم تحويله إلى:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">IL Code</span> (لغة وسيطة)<br />
</li>
<li>ثم يُنفَّذ بواسطة CLR (Common Language Runtime)<br />
</li>
</ul>
? هذه الطبقة الوسيطة هي ما يسمح بأدوات الهندسة العكسية بإعادة إنتاج الكود الأصلي بشكل قريب جدًا.<br />
<hr class="mycode_hr" />
?️ الأداة الأساسية: dnSpydnSpy هو أحد أقوى أدوات:<ul class="mycode_list"><li>Decompilation (تحويل IL إلى C#)<br />
</li>
<li>Debugging (تشغيل البرنامج خطوة بخطوة)<br />
</li>
<li>Editing (تعديل الكود داخل الـ EXE مباشرة)<br />
</li>
</ul>
<hr class="mycode_hr" />
⚙️ خطوات العمل باستخدام dnSpy1️⃣ فتح الملف<ul class="mycode_list"><li>افتح dnSpy<br />
</li>
<li>اسحب ملف:<br />
</li>
</ul>
<br />
 WindowsFormsApplication2.exe<br />
<hr class="mycode_hr" />
2️⃣ استكشاف الهيكلستجد:<ul class="mycode_list"><li>Namespaces<br />
</li>
<li>Classes<br />
</li>
<li>Methods<br />
</li>
</ul>
مثال:<br />
<br />
 Program<br />
└── Main()<br />
Form1<br />
└── button1_Click()<br />
<hr class="mycode_hr" />
3️⃣ قراءة الكودdnSpy يعيد الكود إلى C#:<br />
<br />
 private void button1_Click(object sender, EventArgs e)<br />
{<br />
if (textBox1.Text == "1234")<br />
MessageBox.Show("Valid");<br />
}? هنا فهمت منطق التفعيل بسهولة<br />
<hr class="mycode_hr" />
4️⃣ تحليل IL (للمستوى المتقدم)يمكنك مشاهدة:<ul class="mycode_list"><li>IL Code<br />
</li>
<li>Stack operations<br />
</li>
<li>Low-level behavior<br />
</li>
</ul>
<hr class="mycode_hr" />
5️⃣ التعديل (Patching)تقدر تعدل الكود مباشرة:<br />
<br />
 if (true)<br />
MessageBox.Show("Valid");ثم:<ul class="mycode_list"><li>Compile داخل dnSpy<br />
</li>
<li>حفظ التعديلات<br />
</li>
</ul>
<hr class="mycode_hr" />
?️ الحماية ضد الهندسة العكسية? أدوات الحماية:<ul class="mycode_list"><li>Dotfuscator<br />
</li>
<li>ArmDot .NET Obfuscator<br />
</li>
</ul>
? تقنيات الحماية:<ul class="mycode_list"><li>Obfuscation (تشويش الأسماء)<br />
</li>
<li>Control Flow Obfuscation<br />
</li>
<li>String Encryption<br />
</li>
<li>Code Virtualization (أقوى نوع)<br />
</li>
</ul>
<hr class="mycode_hr" />
⚠️ التحديات أثناء التحليلعند وجود حماية:<ul class="mycode_list"><li>الكود يصبح غير مقروء<br />
</li>
<li>أسماء مثل:<br />
</li>
</ul>
<br />
 a.b.c.d()<ul class="mycode_list"><li>أو تعليمات معقدة جدًا<br />
</li>
</ul>
<hr class="mycode_hr" />
? استخدامات الهندسة العكسية<ul class="mycode_list"><li>فهم برامج قديمة بدون سورس<br />
</li>
<li>تحليل البرمجيات الخبيثة (Malware Analysis)<br />
</li>
<li>اختبار الأمان (Security Testing)<br />
</li>
<li>التعلم من مشاريع الآخرين<br />
</li>
</ul>
<hr class="mycode_hr" />
⚖️ الجانب القانوني<ul class="mycode_list"><li>✔ مسموح: التعلم، البحث، البرامج المفتوحة<br />
</li>
<li>❌ ممنوع: كسر حماية برامج مدفوعة أو التعديل عليها بدون إذن<br />
</li>
</ul>
<hr class="mycode_hr" />
? خلاصة احترافيةبيئة .NET تجعل الهندسة العكسية:<br />
<blockquote class="mycode_quote"><cite>إقتباس :</cite>سهلة نسبيًا مقارنة باللغات Native مثل C++</blockquote>
لكن مع استخدام أدوات الحماية الحديثة:<br />
<blockquote class="mycode_quote"><cite>إقتباس :</cite>تتحول العملية من "قراءة كود" إلى "تحليل سلوك"</blockquote>
]]></description>
			<content:encoded><![CDATA[? مقدمةالهندسة العكسية (Reverse Engineering) في بيئة .NET Framework تعني تحليل الملفات التنفيذية (EXE / DLL) لفهم كيفية عملها داخليًا دون توفر الكود المصدري.<br />
السبب الرئيسي لسهولة هذه العملية نسبيًا في .NET هو أن الكود لا يُحوَّل مباشرة إلى Machine Code، بل إلى <span style="font-weight: bold;" class="mycode_b">IL (Intermediate Language)</span>، وهو تمثيل وسيط قابل لإعادة البناء.<br />
<hr class="mycode_hr" />
? كيف يعمل برنامج .NET داخليًا؟عند كتابة كود C#:<br />
<br />
 if (isValid)<br />
RunApp();يتم تحويله إلى:<ul class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">IL Code</span> (لغة وسيطة)<br />
</li>
<li>ثم يُنفَّذ بواسطة CLR (Common Language Runtime)<br />
</li>
</ul>
? هذه الطبقة الوسيطة هي ما يسمح بأدوات الهندسة العكسية بإعادة إنتاج الكود الأصلي بشكل قريب جدًا.<br />
<hr class="mycode_hr" />
?️ الأداة الأساسية: dnSpydnSpy هو أحد أقوى أدوات:<ul class="mycode_list"><li>Decompilation (تحويل IL إلى C#)<br />
</li>
<li>Debugging (تشغيل البرنامج خطوة بخطوة)<br />
</li>
<li>Editing (تعديل الكود داخل الـ EXE مباشرة)<br />
</li>
</ul>
<hr class="mycode_hr" />
⚙️ خطوات العمل باستخدام dnSpy1️⃣ فتح الملف<ul class="mycode_list"><li>افتح dnSpy<br />
</li>
<li>اسحب ملف:<br />
</li>
</ul>
<br />
 WindowsFormsApplication2.exe<br />
<hr class="mycode_hr" />
2️⃣ استكشاف الهيكلستجد:<ul class="mycode_list"><li>Namespaces<br />
</li>
<li>Classes<br />
</li>
<li>Methods<br />
</li>
</ul>
مثال:<br />
<br />
 Program<br />
└── Main()<br />
Form1<br />
└── button1_Click()<br />
<hr class="mycode_hr" />
3️⃣ قراءة الكودdnSpy يعيد الكود إلى C#:<br />
<br />
 private void button1_Click(object sender, EventArgs e)<br />
{<br />
if (textBox1.Text == "1234")<br />
MessageBox.Show("Valid");<br />
}? هنا فهمت منطق التفعيل بسهولة<br />
<hr class="mycode_hr" />
4️⃣ تحليل IL (للمستوى المتقدم)يمكنك مشاهدة:<ul class="mycode_list"><li>IL Code<br />
</li>
<li>Stack operations<br />
</li>
<li>Low-level behavior<br />
</li>
</ul>
<hr class="mycode_hr" />
5️⃣ التعديل (Patching)تقدر تعدل الكود مباشرة:<br />
<br />
 if (true)<br />
MessageBox.Show("Valid");ثم:<ul class="mycode_list"><li>Compile داخل dnSpy<br />
</li>
<li>حفظ التعديلات<br />
</li>
</ul>
<hr class="mycode_hr" />
?️ الحماية ضد الهندسة العكسية? أدوات الحماية:<ul class="mycode_list"><li>Dotfuscator<br />
</li>
<li>ArmDot .NET Obfuscator<br />
</li>
</ul>
? تقنيات الحماية:<ul class="mycode_list"><li>Obfuscation (تشويش الأسماء)<br />
</li>
<li>Control Flow Obfuscation<br />
</li>
<li>String Encryption<br />
</li>
<li>Code Virtualization (أقوى نوع)<br />
</li>
</ul>
<hr class="mycode_hr" />
⚠️ التحديات أثناء التحليلعند وجود حماية:<ul class="mycode_list"><li>الكود يصبح غير مقروء<br />
</li>
<li>أسماء مثل:<br />
</li>
</ul>
<br />
 a.b.c.d()<ul class="mycode_list"><li>أو تعليمات معقدة جدًا<br />
</li>
</ul>
<hr class="mycode_hr" />
? استخدامات الهندسة العكسية<ul class="mycode_list"><li>فهم برامج قديمة بدون سورس<br />
</li>
<li>تحليل البرمجيات الخبيثة (Malware Analysis)<br />
</li>
<li>اختبار الأمان (Security Testing)<br />
</li>
<li>التعلم من مشاريع الآخرين<br />
</li>
</ul>
<hr class="mycode_hr" />
⚖️ الجانب القانوني<ul class="mycode_list"><li>✔ مسموح: التعلم، البحث، البرامج المفتوحة<br />
</li>
<li>❌ ممنوع: كسر حماية برامج مدفوعة أو التعديل عليها بدون إذن<br />
</li>
</ul>
<hr class="mycode_hr" />
? خلاصة احترافيةبيئة .NET تجعل الهندسة العكسية:<br />
<blockquote class="mycode_quote"><cite>إقتباس :</cite>سهلة نسبيًا مقارنة باللغات Native مثل C++</blockquote>
لكن مع استخدام أدوات الحماية الحديثة:<br />
<blockquote class="mycode_quote"><cite>إقتباس :</cite>تتحول العملية من "قراءة كود" إلى "تحليل سلوك"</blockquote>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[DeLeaker 2025.16 cracked]]></title>
			<link>https://www.at4re.net/f/thread-4937.html</link>
			<pubDate>Wed, 24 Dec 2025 14:45:06 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.at4re.net/f/member.php?action=profile&uid=6337">Paradox</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.at4re.net/f/thread-4937.html</guid>
			<description><![CDATA[DeLeaker 2025.16 (Profiler for C++, C#, .NET and Delphi)<br />
<br />
C++ memory leak detection<br />
<br />
Deleaker is an extension for all major IDEs and a standalone application for memory leak detection - memory, GDI, and handles so far.<br />
Even the most stable of Windows applications are not immune to resource leaks. And of all the bugs and issues, memory leak detection tends to be the most difficult, especially when found in GDI objects and menus. And the golden rule of thumb is that the sooner bugs are found and dealt with, the less expensive they prove to be.<br />
While there's no shortage of tools and add-ons to help track down memory leaks, few are capable of tracking GDI resource leaks that can devastate Windows performance. Deleaker is one of the few tools capable of this, and will have a minimal impact on your application's performance.<br />
Deleaker is a memory leak detector that integrates with all major IDEs: Visual Studio, Delphi, C++ Builder, and Qt Creator.<br />
<br />
Homepage<br />
<a href="https://www.deleaker.com/" target="_blank" rel="noopener" class="mycode_url">Link</a><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.at4re.net/f/images/attachtypes/txt.png" title="Text Document" border="0" alt=".txt" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=3501" target="_blank" title="">DeLeaker.txt</a> (الحجم : 97 bytes / التحميلات : 3)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[DeLeaker 2025.16 (Profiler for C++, C#, .NET and Delphi)<br />
<br />
C++ memory leak detection<br />
<br />
Deleaker is an extension for all major IDEs and a standalone application for memory leak detection - memory, GDI, and handles so far.<br />
Even the most stable of Windows applications are not immune to resource leaks. And of all the bugs and issues, memory leak detection tends to be the most difficult, especially when found in GDI objects and menus. And the golden rule of thumb is that the sooner bugs are found and dealt with, the less expensive they prove to be.<br />
While there's no shortage of tools and add-ons to help track down memory leaks, few are capable of tracking GDI resource leaks that can devastate Windows performance. Deleaker is one of the few tools capable of this, and will have a minimal impact on your application's performance.<br />
Deleaker is a memory leak detector that integrates with all major IDEs: Visual Studio, Delphi, C++ Builder, and Qt Creator.<br />
<br />
Homepage<br />
<a href="https://www.deleaker.com/" target="_blank" rel="noopener" class="mycode_url">Link</a><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.at4re.net/f/images/attachtypes/txt.png" title="Text Document" border="0" alt=".txt" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=3501" target="_blank" title="">DeLeaker.txt</a> (الحجم : 97 bytes / التحميلات : 3)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[NETReactorSlayer 6.4.0.0 fixed8+]]></title>
			<link>https://www.at4re.net/f/thread-4905.html</link>
			<pubDate>Mon, 08 Dec 2025 11:57:32 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.at4re.net/f/member.php?action=profile&uid=6410">FreePalestine</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.at4re.net/f/thread-4905.html</guid>
			<description><![CDATA[السلام عليكم<br />
واحدة من أفضل البرامج لفك ضغط ملفات دوت نت التي تم تغليفها بـ NetReactor<br />
*في هذا الإصدار تم تعزيز قسم فك تشفير السلاسل<br />
<br />
الرابط بالمرفقات:<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.at4re.net/f/images/attachtypes/txt.png" title="Text Document" border="0" alt=".txt" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=3480" target="_blank" title="">Link.txt</a> (الحجم : 83 bytes / التحميلات : 3)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[السلام عليكم<br />
واحدة من أفضل البرامج لفك ضغط ملفات دوت نت التي تم تغليفها بـ NetReactor<br />
*في هذا الإصدار تم تعزيز قسم فك تشفير السلاسل<br />
<br />
الرابط بالمرفقات:<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.at4re.net/f/images/attachtypes/txt.png" title="Text Document" border="0" alt=".txt" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=3480" target="_blank" title="">Link.txt</a> (الحجم : 83 bytes / التحميلات : 3)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[De4dot ex]]></title>
			<link>https://www.at4re.net/f/thread-4865.html</link>
			<pubDate>Fri, 28 Nov 2025 21:35:55 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.at4re.net/f/member.php?action=profile&uid=2599">johnvb</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.at4re.net/f/thread-4865.html</guid>
			<description><![CDATA[<div style="text-align: left;" class="mycode_align">New version of de4dot 2025 support many packer obfuscater<br />
I test it netreactor 6.9 it work so good<br />
Note : first you need to remove anti tamper manually then use it</div><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.at4re.net/f/images/attachtypes/txt.png" title="Text Document" border="0" alt=".txt" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=3461" target="_blank" title="">Link.txt</a> (الحجم : 76 bytes / التحميلات : 4)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[<div style="text-align: left;" class="mycode_align">New version of de4dot 2025 support many packer obfuscater<br />
I test it netreactor 6.9 it work so good<br />
Note : first you need to remove anti tamper manually then use it</div><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.at4re.net/f/images/attachtypes/txt.png" title="Text Document" border="0" alt=".txt" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=3461" target="_blank" title="">Link.txt</a> (الحجم : 76 bytes / التحميلات : 4)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[اخر تحديث DnSpy بتاريخ 28-8-2025]]></title>
			<link>https://www.at4re.net/f/thread-4725.html</link>
			<pubDate>Wed, 27 Aug 2025 22:16:17 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.at4re.net/f/member.php?action=profile&uid=6189">ahmed002177</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.at4re.net/f/thread-4725.html</guid>
			<description><![CDATA[بسم الله الرحمن الرحيم<br />
موضوع ليس بجديد علي الاخوة العمالقه في المجال <br />
<br />
انا فقط مبتدء جبت اخر تحديث من برنامج <br />
DnSpy v6.5.1<br />
للنسختين 32 64<br />
<br />
موقع الموطور <br />
<a href="https://dnspy.org/" target="_blank" rel="noopener" class="mycode_url">https://dnspy.org/</a><br />
<br />
32<br />
<a href="https://dnspy.org/wp-content/uploads/2024/10/dnSpy-net-win32.zip" target="_blank" rel="noopener" class="mycode_url">https://dnspy.org/wp-content/uploads/202...-win32.zip</a><br />
<br />
64<br />
<a href="https://dnspy.org/wp-content/uploads/2024/10/dnSpy-net-win64.zip" target="_blank" rel="noopener" class="mycode_url">https://dnspy.org/wp-content/uploads/202...-win64.zip</a>]]></description>
			<content:encoded><![CDATA[بسم الله الرحمن الرحيم<br />
موضوع ليس بجديد علي الاخوة العمالقه في المجال <br />
<br />
انا فقط مبتدء جبت اخر تحديث من برنامج <br />
DnSpy v6.5.1<br />
للنسختين 32 64<br />
<br />
موقع الموطور <br />
<a href="https://dnspy.org/" target="_blank" rel="noopener" class="mycode_url">https://dnspy.org/</a><br />
<br />
32<br />
<a href="https://dnspy.org/wp-content/uploads/2024/10/dnSpy-net-win32.zip" target="_blank" rel="noopener" class="mycode_url">https://dnspy.org/wp-content/uploads/202...-win32.zip</a><br />
<br />
64<br />
<a href="https://dnspy.org/wp-content/uploads/2024/10/dnSpy-net-win64.zip" target="_blank" rel="noopener" class="mycode_url">https://dnspy.org/wp-content/uploads/202...-win64.zip</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[ILSpy 10.0 Preview 1]]></title>
			<link>https://www.at4re.net/f/thread-4687.html</link>
			<pubDate>Mon, 04 Aug 2025 23:16:18 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.at4re.net/f/member.php?action=profile&uid=6252">m3dm3d</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.at4re.net/f/thread-4687.html</guid>
			<description><![CDATA[السلام عليكم ورحمة الله وبركاته<br />
<br />
تحديث جديد لأداة ILSpy تحمل إصدار 10<br />
النسخة غير مستقرة أي تحت التجربة قبل صدورها<br />
<br />
التحميل:<br />
<a href="https://github.com/icsharpcode/ILSpy/releases" target="_blank" rel="noopener" class="mycode_url">https://github.com/icsharpcode/ILSpy/releases</a><br />
<br />
رابط مباشر:<br />
<a href="https://github.com/icsharpcode/ILSpy/releases/download/v10.0-preview1/ILSpy_binaries_10.0.0.8079-preview1-x64.zip" target="_blank" rel="noopener" class="mycode_url">https://github.com/icsharpcode/ILSpy/rel...w1-x64.zip</a>]]></description>
			<content:encoded><![CDATA[السلام عليكم ورحمة الله وبركاته<br />
<br />
تحديث جديد لأداة ILSpy تحمل إصدار 10<br />
النسخة غير مستقرة أي تحت التجربة قبل صدورها<br />
<br />
التحميل:<br />
<a href="https://github.com/icsharpcode/ILSpy/releases" target="_blank" rel="noopener" class="mycode_url">https://github.com/icsharpcode/ILSpy/releases</a><br />
<br />
رابط مباشر:<br />
<a href="https://github.com/icsharpcode/ILSpy/releases/download/v10.0-preview1/ILSpy_binaries_10.0.0.8079-preview1-x64.zip" target="_blank" rel="noopener" class="mycode_url">https://github.com/icsharpcode/ILSpy/rel...w1-x64.zip</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[JetBrains dotPeek]]></title>
			<link>https://www.at4re.net/f/thread-4420.html</link>
			<pubDate>Sat, 22 Feb 2025 14:04:33 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.at4re.net/f/member.php?action=profile&uid=1">M!X0R</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.at4re.net/f/thread-4420.html</guid>
			<description><![CDATA[<div style="text-align: left;" class="mycode_align">
<pre class="block-code line-numbers"><code class="language-none">.NET decompiler
Decompile .NET assemblies to C#
dotPeek is a free-of-charge standalone tool based on ReSharper's bundled decompiler. It can reliably decompile any .NET assembly into equivalent C# or IL code.
The decompiler supports multiple formats including libraries (.dll), executables (.exe), and Windows metadata files (.winmd).
</code></pre></div>
<div style="text-align: left;" class="mycode_align">
More info and Download:<br />
<pre class="block-code line-numbers"><code class="language-none">https://www.jetbrains.com/decompiler
</code></pre></div>]]></description>
			<content:encoded><![CDATA[<div style="text-align: left;" class="mycode_align">
<pre class="block-code line-numbers"><code class="language-none">.NET decompiler
Decompile .NET assemblies to C#
dotPeek is a free-of-charge standalone tool based on ReSharper's bundled decompiler. It can reliably decompile any .NET assembly into equivalent C# or IL code.
The decompiler supports multiple formats including libraries (.dll), executables (.exe), and Windows metadata files (.winmd).
</code></pre></div>
<div style="text-align: left;" class="mycode_align">
More info and Download:<br />
<pre class="block-code line-numbers"><code class="language-none">https://www.jetbrains.com/decompiler
</code></pre></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[NET Reflector11.1 اخر اصدار]]></title>
			<link>https://www.at4re.net/f/thread-3881.html</link>
			<pubDate>Tue, 30 Apr 2024 22:06:37 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.at4re.net/f/member.php?action=profile&uid=4868">elswah79</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.at4re.net/f/thread-3881.html</guid>
			<description><![CDATA[اخر اصدار 11.1  متوفر علي الموقع كامل <br />
<a href="https://www.red-gate.com/products/reflector/" target="_blank" rel="noopener" class="mycode_url">https://www.red-gate.com/products/reflector/</a><br />
مرفق كيجن للتفعيل نظيف ومجرب ايضا يمكن تحميل الاصدار من الموقع او الاصدار المرفق<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.at4re.net/f/images/attachtypes/txt.png" title="Text Document" border="0" alt=".txt" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=2774" target="_blank" title="">.net reflctor 11.1.txt</a> (الحجم : 85 bytes / التحميلات : 28)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[اخر اصدار 11.1  متوفر علي الموقع كامل <br />
<a href="https://www.red-gate.com/products/reflector/" target="_blank" rel="noopener" class="mycode_url">https://www.red-gate.com/products/reflector/</a><br />
مرفق كيجن للتفعيل نظيف ومجرب ايضا يمكن تحميل الاصدار من الموقع او الاصدار المرفق<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.at4re.net/f/images/attachtypes/txt.png" title="Text Document" border="0" alt=".txt" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=2774" target="_blank" title="">.net reflctor 11.1.txt</a> (الحجم : 85 bytes / التحميلات : 28)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[dnSpy 6.5]]></title>
			<link>https://www.at4re.net/f/thread-3741.html</link>
			<pubDate>Sun, 04 Feb 2024 16:52:23 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.at4re.net/f/member.php?action=profile&uid=262">Newhak</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.at4re.net/f/thread-3741.html</guid>
			<description><![CDATA[الاصدار لسة خرج من الفرن<br />
 <br />
<pre class="block-code line-numbers"><code class="language-php">https://github.com/dnSpyEx/dnSpy/releases/tag/v6.5.0
</code></pre>]]></description>
			<content:encoded><![CDATA[الاصدار لسة خرج من الفرن<br />
 <br />
<pre class="block-code line-numbers"><code class="language-php">https://github.com/dnSpyEx/dnSpy/releases/tag/v6.5.0
</code></pre>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[ILSPY 8.0]]></title>
			<link>https://www.at4re.net/f/thread-3614.html</link>
			<pubDate>Fri, 23 Jun 2023 19:53:01 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.at4re.net/f/member.php?action=profile&uid=1050">samoray</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.at4re.net/f/thread-3614.html</guid>
			<description><![CDATA[<img src="https://www.nikouusitalo.com/content/images/2021/08/ILSpy.jpg" loading="lazy"  alt="[صورة مرفقة: ILSpy.jpg]" class="mycode_img" /><br />
 ILSpy is the open-source .NET assembly browser and decompiler.<br />
Download: <a href="https://github.com/icsharpcode/ILSpy/releases" target="_blank" rel="noopener" class="mycode_url">latest release</a> | <a href="https://github.com/icsharpcode/ILSpy/actions?query=workflow%3A%22Build+ILSpy%22+branch%3Amaster+is%3Asuccess+event%3Apush" target="_blank" rel="noopener" class="mycode_url">latest CI build (master)</a> | <a href="https://apps.microsoft.com/store/detail/ilspy-fresh/XP8C26VDWLP4T4" target="_blank" rel="noopener" class="mycode_url">Microsoft Store (RTM versions only)</a><br />
Decompiler FrontendsAside from the WPF UI ILSpy (downloadable via Releases, see also <a href="https://github.com/icsharpcode/ILSpy/wiki/Plugins" target="_blank" rel="noopener" class="mycode_url">plugins</a>), the following other frontends are available:<ul class="mycode_list"><li>Visual Studio 2022 ships with decompilation support for F12 enabled by default (using our engine v7.1).<br />
</li>
<li>In Visual Studio 2019, you have to manually enable F12 support. Go to Tools / Options / Text Editor / C# / Advanced and check "Enable navigation to decompiled source"<br />
</li>
<li><a href="https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.csharp" target="_blank" rel="noopener" class="mycode_url">C# for Visual Studio Code</a> ships with decompilation support as well. To enable, activate the setting "Enable Decompilation Support".<br />
</li>
<li>Our Visual Studio 2022 extension <a href="https://marketplace.visualstudio.com/items?itemName=SharpDevelopTeam.ILSpy2022" target="_blank" rel="noopener" class="mycode_url">marketplace</a><br />
</li>
<li>Our Visual Studio 2017/2019 extension <a href="https://marketplace.visualstudio.com/items?itemName=SharpDevelopTeam.ILSpy" target="_blank" rel="noopener" class="mycode_url">marketplace</a><br />
</li>
<li>Our Visual Studio Code Extension <a href="https://github.com/icsharpcode/ilspy-vscode" target="_blank" rel="noopener" class="mycode_url">repository</a> | <a href="https://marketplace.visualstudio.com/items?itemName=icsharpcode.ilspy-vscode" target="_blank" rel="noopener" class="mycode_url">marketplace</a><br />
</li>
<li>Our Linux/Mac/Windows ILSpy UI based on <a href="http://www.avaloniaui.net/" target="_blank" rel="noopener" class="mycode_url">Avalonia</a> - check out <a href="https://github.com/icsharpcode/AvaloniaILSpy" target="_blank" rel="noopener" class="mycode_url">https://github.com/icsharpcode/AvaloniaILSpy</a><br />
</li>
<li>Our <a href="https://www.nuget.org/packages/ICSharpCode.Decompiler/" target="_blank" rel="noopener" class="mycode_url">ICSharpCode.Decompiler</a> NuGet for your own projects<br />
</li>
<li>Our dotnet tool for Linux/Mac/Windows - check out <a href="https://github.com/icsharpcode/ILSpy/blob/master/ICSharpCode.ILSpyCmd" target="_blank" rel="noopener" class="mycode_url">ILSpyCmd</a> in this repository<br />
</li>
<li>Our Linux/Mac/Windows <a href="https://github.com/icsharpcode/ILSpy/blob/master/ICSharpCode.Decompiler.PowerShell" target="_blank" rel="noopener" class="mycode_url">PowerShell cmdlets</a> in this repository<br />
</li>
</ul>
Features<ul class="mycode_list"><li>Decompilation to C# (check out the <a href="https://github.com/icsharpcode/ILSpy/issues/829" target="_blank" rel="noopener" class="mycode_url">language support status</a>)<br />
</li>
<li>Whole-project decompilation<br />
</li>
<li>Search for types/methods/properties (learn about the <a href="https://github.com/icsharpcode/ILSpy/wiki/Search-Options" target="_blank" rel="noopener" class="mycode_url">options</a>)<br />
</li>
<li>Hyperlink-based type/method/property navigation<br />
</li>
<li>Base/Derived types navigation, history<br />
</li>
<li>Assembly metadata explorer (<a href="https://github.com/icsharpcode/ILSpy/wiki/Metadata-Explorer" target="_blank" rel="noopener" class="mycode_url">feature walkthrough</a>)<br />
</li>
<li>BAML to XAML decompiler<br />
</li>
<li>ReadyToRun binary support for .NET Core (see the <a href="https://github.com/icsharpcode/ILSpy/wiki/ILSpy.ReadyToRun" target="_blank" rel="noopener" class="mycode_url">tutorial</a>)<br />
</li>
<li>Extensible via <a href="https://github.com/icsharpcode/ILSpy/wiki/Plugins" target="_blank" rel="noopener" class="mycode_url">plugins</a><br />
</li>
<li>Additional features in DEBUG builds (<a href="https://github.com/icsharpcode/ILSpy/wiki/Additional-Features-in-DEBUG-Builds" target="_blank" rel="noopener" class="mycode_url">for the devs</a>)<br />
</li>
</ul>
<br />
<br />
Download link:<br />
<pre class="block-code line-numbers"><code class="language-none">https://github.com/icsharpcode/ILSpy/releases/tag/v8.0
</code></pre>]]></description>
			<content:encoded><![CDATA[<img src="https://www.nikouusitalo.com/content/images/2021/08/ILSpy.jpg" loading="lazy"  alt="[صورة مرفقة: ILSpy.jpg]" class="mycode_img" /><br />
 ILSpy is the open-source .NET assembly browser and decompiler.<br />
Download: <a href="https://github.com/icsharpcode/ILSpy/releases" target="_blank" rel="noopener" class="mycode_url">latest release</a> | <a href="https://github.com/icsharpcode/ILSpy/actions?query=workflow%3A%22Build+ILSpy%22+branch%3Amaster+is%3Asuccess+event%3Apush" target="_blank" rel="noopener" class="mycode_url">latest CI build (master)</a> | <a href="https://apps.microsoft.com/store/detail/ilspy-fresh/XP8C26VDWLP4T4" target="_blank" rel="noopener" class="mycode_url">Microsoft Store (RTM versions only)</a><br />
Decompiler FrontendsAside from the WPF UI ILSpy (downloadable via Releases, see also <a href="https://github.com/icsharpcode/ILSpy/wiki/Plugins" target="_blank" rel="noopener" class="mycode_url">plugins</a>), the following other frontends are available:<ul class="mycode_list"><li>Visual Studio 2022 ships with decompilation support for F12 enabled by default (using our engine v7.1).<br />
</li>
<li>In Visual Studio 2019, you have to manually enable F12 support. Go to Tools / Options / Text Editor / C# / Advanced and check "Enable navigation to decompiled source"<br />
</li>
<li><a href="https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.csharp" target="_blank" rel="noopener" class="mycode_url">C# for Visual Studio Code</a> ships with decompilation support as well. To enable, activate the setting "Enable Decompilation Support".<br />
</li>
<li>Our Visual Studio 2022 extension <a href="https://marketplace.visualstudio.com/items?itemName=SharpDevelopTeam.ILSpy2022" target="_blank" rel="noopener" class="mycode_url">marketplace</a><br />
</li>
<li>Our Visual Studio 2017/2019 extension <a href="https://marketplace.visualstudio.com/items?itemName=SharpDevelopTeam.ILSpy" target="_blank" rel="noopener" class="mycode_url">marketplace</a><br />
</li>
<li>Our Visual Studio Code Extension <a href="https://github.com/icsharpcode/ilspy-vscode" target="_blank" rel="noopener" class="mycode_url">repository</a> | <a href="https://marketplace.visualstudio.com/items?itemName=icsharpcode.ilspy-vscode" target="_blank" rel="noopener" class="mycode_url">marketplace</a><br />
</li>
<li>Our Linux/Mac/Windows ILSpy UI based on <a href="http://www.avaloniaui.net/" target="_blank" rel="noopener" class="mycode_url">Avalonia</a> - check out <a href="https://github.com/icsharpcode/AvaloniaILSpy" target="_blank" rel="noopener" class="mycode_url">https://github.com/icsharpcode/AvaloniaILSpy</a><br />
</li>
<li>Our <a href="https://www.nuget.org/packages/ICSharpCode.Decompiler/" target="_blank" rel="noopener" class="mycode_url">ICSharpCode.Decompiler</a> NuGet for your own projects<br />
</li>
<li>Our dotnet tool for Linux/Mac/Windows - check out <a href="https://github.com/icsharpcode/ILSpy/blob/master/ICSharpCode.ILSpyCmd" target="_blank" rel="noopener" class="mycode_url">ILSpyCmd</a> in this repository<br />
</li>
<li>Our Linux/Mac/Windows <a href="https://github.com/icsharpcode/ILSpy/blob/master/ICSharpCode.Decompiler.PowerShell" target="_blank" rel="noopener" class="mycode_url">PowerShell cmdlets</a> in this repository<br />
</li>
</ul>
Features<ul class="mycode_list"><li>Decompilation to C# (check out the <a href="https://github.com/icsharpcode/ILSpy/issues/829" target="_blank" rel="noopener" class="mycode_url">language support status</a>)<br />
</li>
<li>Whole-project decompilation<br />
</li>
<li>Search for types/methods/properties (learn about the <a href="https://github.com/icsharpcode/ILSpy/wiki/Search-Options" target="_blank" rel="noopener" class="mycode_url">options</a>)<br />
</li>
<li>Hyperlink-based type/method/property navigation<br />
</li>
<li>Base/Derived types navigation, history<br />
</li>
<li>Assembly metadata explorer (<a href="https://github.com/icsharpcode/ILSpy/wiki/Metadata-Explorer" target="_blank" rel="noopener" class="mycode_url">feature walkthrough</a>)<br />
</li>
<li>BAML to XAML decompiler<br />
</li>
<li>ReadyToRun binary support for .NET Core (see the <a href="https://github.com/icsharpcode/ILSpy/wiki/ILSpy.ReadyToRun" target="_blank" rel="noopener" class="mycode_url">tutorial</a>)<br />
</li>
<li>Extensible via <a href="https://github.com/icsharpcode/ILSpy/wiki/Plugins" target="_blank" rel="noopener" class="mycode_url">plugins</a><br />
</li>
<li>Additional features in DEBUG builds (<a href="https://github.com/icsharpcode/ILSpy/wiki/Additional-Features-in-DEBUG-Builds" target="_blank" rel="noopener" class="mycode_url">for the devs</a>)<br />
</li>
</ul>
<br />
<br />
Download link:<br />
<pre class="block-code line-numbers"><code class="language-none">https://github.com/icsharpcode/ILSpy/releases/tag/v8.0
</code></pre>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[dnSpyEx 6.4.0]]></title>
			<link>https://www.at4re.net/f/thread-3608.html</link>
			<pubDate>Tue, 13 Jun 2023 19:51:21 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.at4re.net/f/member.php?action=profile&uid=1609">otmanov</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.at4re.net/f/thread-3608.html</guid>
			<description><![CDATA[dnSpyEx 6.4.0<br />
اخر نسخة نزلت اليوم: <br />
<pre class="block-code line-numbers"><code class="language-none">https://github.com/dnSpyEx/dnSpy/releases/tag/v6.4.0
</code></pre>]]></description>
			<content:encoded><![CDATA[dnSpyEx 6.4.0<br />
اخر نسخة نزلت اليوم: <br />
<pre class="block-code line-numbers"><code class="language-none">https://github.com/dnSpyEx/dnSpy/releases/tag/v6.4.0
</code></pre>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Anti debugger]]></title>
			<link>https://www.at4re.net/f/thread-3572.html</link>
			<pubDate>Thu, 13 Apr 2023 11:22:35 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.at4re.net/f/member.php?action=profile&uid=2599">johnvb</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.at4re.net/f/thread-3572.html</guid>
			<description><![CDATA[سلام عليكم<br />
هل يوجد إضافة أو أية أداة مثل phantom او Scylla hide  لمنقح dnspy <br />
او اي طريقة نتفادى اكتشاف المنقح من قبل البرنامج]]></description>
			<content:encoded><![CDATA[سلام عليكم<br />
هل يوجد إضافة أو أية أداة مثل phantom او Scylla hide  لمنقح dnspy <br />
او اي طريقة نتفادى اكتشاف المنقح من قبل البرنامج]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[مساعدة]]></title>
			<link>https://www.at4re.net/f/thread-3273.html</link>
			<pubDate>Mon, 12 Sep 2022 22:34:50 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.at4re.net/f/member.php?action=profile&uid=2444">amredries123</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.at4re.net/f/thread-3273.html</guid>
			<description><![CDATA[السلام عليكم إخوانى الكرام <br />
<br />
فى الملف المرفق "key.dll" يوجد دالة GenerateInstallationCodeByName   إريد استخدامها و لكن أريد أن أعرف المعطيات لها <br />
انا أعلم أنها من نوع string  و لكن أريد أعرف إذا structure او enum  تحدد المعطيات أم لا   لانى حاولت كثيرا عمل برنامج ب vb.net  تعطينى خطأ<br />
<br />
هذه الدالة المفروض أنها تعمل  licenses  code   بناء على  environment code  و المفترض انها تاخذ تاريخ إنتهاء الرخصة أيضا <br />
و يبدو ان الملف obfuscated <br />
فهل مساعدة <br />
شكرا مقدما<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.at4re.net/f/images/attachtypes/rar.png" title="RAR File" border="0" alt=".rar" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=2323" target="_blank" title="">key.rar</a> (الحجم : 58.13 KB / التحميلات : 23)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[السلام عليكم إخوانى الكرام <br />
<br />
فى الملف المرفق "key.dll" يوجد دالة GenerateInstallationCodeByName   إريد استخدامها و لكن أريد أن أعرف المعطيات لها <br />
انا أعلم أنها من نوع string  و لكن أريد أعرف إذا structure او enum  تحدد المعطيات أم لا   لانى حاولت كثيرا عمل برنامج ب vb.net  تعطينى خطأ<br />
<br />
هذه الدالة المفروض أنها تعمل  licenses  code   بناء على  environment code  و المفترض انها تاخذ تاريخ إنتهاء الرخصة أيضا <br />
و يبدو ان الملف obfuscated <br />
فهل مساعدة <br />
شكرا مقدما<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://www.at4re.net/f/images/attachtypes/rar.png" title="RAR File" border="0" alt=".rar" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=2323" target="_blank" title="">key.rar</a> (الحجم : 58.13 KB / التحميلات : 23)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[DnSpyEx شكل جديد لأداة DnSpy]]></title>
			<link>https://www.at4re.net/f/thread-2756.html</link>
			<pubDate>Mon, 21 Jun 2021 04:49:28 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.at4re.net/f/member.php?action=profile&uid=166">Cyperior</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.at4re.net/f/thread-2756.html</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align">السلام عليكم ورحمة الله وبركاته<br />
<br />
هناك تحديث جديد لأداة DnSpy الغنية عن التعريف<br />
<br />
الإصدار الحالي هو 6.1.9 وهو أول إصدار ويحتوي على التالي:<br />
</div>
<blockquote class="mycode_quote"><cite>إقتباس :</cite><div style="text-align: center;" class="mycode_align"><ul class="mycode_list"><li>Several updates to NRefactory resulting in cleaner output code for the C# language<br />
</li>
<li>Improved the IL disassembler/decompiler. More information is now displayed.<br />
</li>
<li>Improved BAML decompiler with latest changes from ILSpy repository.<br />
</li>
<li>Updated ICSharpCode.TreeView to the latest version<br />
</li>
<li>Dragging tree view items near the top and bottom will scroll the tree view<br />
</li>
<li>Improved assembly resolution for .NET Core and .NET 5<br />
</li>
<li>Improved asynchronous method decompilation<br />
</li>
</ul>
</div></blockquote>
<div style="text-align: center;" class="mycode_align">
رابط التحميل:<br />
<a href="https://github.com/dnSpyEx/dnSpy/releases/tag/v6.1.9" target="_blank" rel="noopener" class="mycode_url">https://github.com/dnSpyEx/dnSpy/releases/tag/v6.1.9</a><br />
<br />
<a href="https://d.at4recentre.ga/1:/dnSpy_v6.1.9_x86_x64_Compiled_at_18_Jun_2021.rar.7z" target="_blank" rel="noopener" class="mycode_url">https://d.at4recentre.ga/1:/dnSpy_v6.1.9...021.rar.7z</a><br />
pass : at4re.net</div>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align">السلام عليكم ورحمة الله وبركاته<br />
<br />
هناك تحديث جديد لأداة DnSpy الغنية عن التعريف<br />
<br />
الإصدار الحالي هو 6.1.9 وهو أول إصدار ويحتوي على التالي:<br />
</div>
<blockquote class="mycode_quote"><cite>إقتباس :</cite><div style="text-align: center;" class="mycode_align"><ul class="mycode_list"><li>Several updates to NRefactory resulting in cleaner output code for the C# language<br />
</li>
<li>Improved the IL disassembler/decompiler. More information is now displayed.<br />
</li>
<li>Improved BAML decompiler with latest changes from ILSpy repository.<br />
</li>
<li>Updated ICSharpCode.TreeView to the latest version<br />
</li>
<li>Dragging tree view items near the top and bottom will scroll the tree view<br />
</li>
<li>Improved assembly resolution for .NET Core and .NET 5<br />
</li>
<li>Improved asynchronous method decompilation<br />
</li>
</ul>
</div></blockquote>
<div style="text-align: center;" class="mycode_align">
رابط التحميل:<br />
<a href="https://github.com/dnSpyEx/dnSpy/releases/tag/v6.1.9" target="_blank" rel="noopener" class="mycode_url">https://github.com/dnSpyEx/dnSpy/releases/tag/v6.1.9</a><br />
<br />
<a href="https://d.at4recentre.ga/1:/dnSpy_v6.1.9_x86_x64_Compiled_at_18_Jun_2021.rar.7z" target="_blank" rel="noopener" class="mycode_url">https://d.at4recentre.ga/1:/dnSpy_v6.1.9...021.rar.7z</a><br />
pass : at4re.net</div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[de4dot .NET Reactor v6.x Modded by Mobile46]]></title>
			<link>https://www.at4re.net/f/thread-2665.html</link>
			<pubDate>Thu, 25 Mar 2021 14:04:52 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://www.at4re.net/f/member.php?action=profile&uid=2521">-pnta-</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.at4re.net/f/thread-2665.html</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><img src="https://i.imgur.com/BU5dlKm.png" loading="lazy"  alt="[صورة مرفقة: BU5dlKm.png]" class="mycode_img" /></div>
 <br />
<blockquote class="mycode_quote"><cite>إقتباس :</cite>It's just updated unpacker <span style="font-weight: bold;" class="mycode_b">not a devirtualizer</span> for .NET Reactor!<br />
<br />
If target uses <span style="font-weight: bold;" class="mycode_b">Code Virtualization</span> or de4dot fails to unpack then run it again with these parameters: -p dr4 --dont-rename --preserve-all --keep-types</blockquote>
<br />
Download Link:<br />
<blockquote class="mycode_quote"><cite>إقتباس :</cite><a href="https://www.dosyaupload.com/81wb" target="_blank" rel="noopener" class="mycode_url">https://www.dosyaupload.com/81wb</a></blockquote>
]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><img src="https://i.imgur.com/BU5dlKm.png" loading="lazy"  alt="[صورة مرفقة: BU5dlKm.png]" class="mycode_img" /></div>
 <br />
<blockquote class="mycode_quote"><cite>إقتباس :</cite>It's just updated unpacker <span style="font-weight: bold;" class="mycode_b">not a devirtualizer</span> for .NET Reactor!<br />
<br />
If target uses <span style="font-weight: bold;" class="mycode_b">Code Virtualization</span> or de4dot fails to unpack then run it again with these parameters: -p dr4 --dont-rename --preserve-all --keep-types</blockquote>
<br />
Download Link:<br />
<blockquote class="mycode_quote"><cite>إقتباس :</cite><a href="https://www.dosyaupload.com/81wb" target="_blank" rel="noopener" class="mycode_url">https://www.dosyaupload.com/81wb</a></blockquote>
]]></content:encoded>
		</item>
	</channel>
</rss>