Pages

Se afișează postările cu eticheta security. Afișați toate postările
Se afișează postările cu eticheta security. Afișați toate postările

vineri, 28 martie 2025

Windows 10 : Microsoft Edge WebView2 - stop PID's.

The Microsoft Edge WebView2 can stop some running software if the windows not work well.
I have on this laptop an old Windows 10 with 4 Gb RAM and some services go to low and PIS's are escape from basic running ...
The broker software cannot manage the all changes and Microsoft Edge WebView2 jump even on Copilot and stop my running work.
I thin k was a intrusinon on the windows os with some bad customization ...
Because I don't have time resource for learning Windows administrartion and for my provider of this local area network is a hacker or maybe is hached ... I use artificial intelligence to stop the Microsoft Edge WebView2 PID's that is stop and jump around ...
I created on admin command com this script to solve this part of runnig ...
@echo off
echo Closing processes named msedgewebview2...
tasklist | findstr "msedgewebview2" >nul
if %errorlevel%==0 (
    taskkill /IM msedgewebview2.exe /F
    echo Processes terminated successfully.
) else (
    echo No processes found with the name msedgewebview2.
)
pause

miercuri, 13 martie 2024

News : Security ... understanding computer behavior ...

Welcome to Malware Development Fundamentals! This is the first part in a series where we explore common techniques, tools, and procedures (TTPs) used in the context of malware development. I will be adapting all of my blog posts on the subject of what I've learned so far in regard to this subfield of hacking, therefore, if you'd like to get a step ahead, before everyone else, consider reading more on my blog! https://crows-nest.gitbook.io ...
Normal users and developers are two categories of people who share the same hardware resource. From the point of view of information processing by the hardware resource, this can generate different behaviors on their part... I recommend this video and this youtube channel - named crow, to understand the behavior of the computer or laptop at a more complex level and it does not allow us to correctly evaluate and an appropriate action. with his requirements. Obviously, it also depends on the time resource that we want to invest for the objective that we have to fulfill as a user or developer.

luni, 11 decembrie 2023

News : About ImHex editor.

ImHex is a free cross-platform hex editor available on Windows, macOS, and Linux with a beautiful design.
ImHex is used by programmers and reverse engineers to view and analyze binary data.
Comes with features are a completely custom binary template and pattern language to decode and highlight structures in the data, a graphical node-based data processor to pre-process values before they're displayed, a disassembler, diffing support, bookmarks and much much more.
You can disassemble a variaty of different instruction sets. From x86 over ARM Cortex-M Thumb code to PowerPC. Many configuration options are available. Together with the integrated YARA rules parser it's a great way to analyze Malware.
Read more on the official website.