Skip to content

Tag: linux

Finding mapped memory from inside a process

Setup: Ubuntu 18×64 x86_64 application Arbitrary code execution from inside the application I’m trying to write code which should be able to find structures in memory even with ASLR enabled. Sadly, I couldn’t find any static references to those regions, so I’m guessing I have to use the…

How to find only the lines that contain two consecutive vowels

how to find lines that contain consecutive vowels $ (filename) | sed ‘/[a*e*i*o*u]/!d’ Answer To find lines that contain consecutive vowels you should consider using Here, [aeiou]{2,} pattern matches 2 or more occurrences ({2,} is an interval quantifier with the minimum occurrence number set to 2)…

intel SPDK ioat example fail to run

I am new in the intel SPDK and meet some problem when I run the example code. I setup the BIOS as this page said. Intel® Hyper-Threading Technology off Intel SpeedStep® technology enabled Intel® Turbo Boost Technology disabled then I git clone from this page and run all the command. The test command ./test/un…

Linux Installation libX11-devel

I am trying to build QT4 (porting from Redhat 5 to 7 with an upgraded gcc compiler) in RedHat 7 and I was getting an error saying X11/Xlib.h can’t be found. Anyways, after doing some research most people said to install libX11-devel to get those x11 libraries. Since I am using an offline machine I can&#…