Archives for General - Page 2
Splunk dashboard: Writing a dynamic query
Another day, another thing to learn , this spices up my job. Today i built a dashboard , i want the user provide me a list of keywords from...
A Splunk query to inventory all your saved search
| rest /servicesNS/-/-/saved/searches | search NOT author=nobody NOT disabled=1 The above query will list out all your saved search with their attributes. It’s pretty helpful when we want to...
Bypass cloudflare protection
In my last post, i shared that we can use Fiddler to bypass cloudflare protection. I used it for a few days and realized that Fiddler is not stable....
Adding wkhtmltopdf to existing container
Another day, another thing. I’m running a PHP site on Azure App Service, the site needs to convert some documents to pdf. We know we need wkthmltopdf, unfortunately the...
How to by pass cloudflare protection when using curl,wget
if you need to write a crawler script and that script needs to crawl a site protected by cloudflare. you will face a challenge, you got 403 error. It’s...
can we hide our identity on internet?
With recent data privacy law, somehow i thought that our identity will not be easily shared between sites. This is wrong, i found it today. I’m using my personal...
TI-84 calculator: Alpha key doesn’t work as it is supposed to
First, check your calculator OS version – by pressing 2nd – Mem , select About, if the version is , you should upgrade the to version To upgrade...
AWS EC2: Restore a volume to the same server with different mount
If you accidentally delete some files in your EC2 , you don’t want to restore the whole volume, you just want to restore some files on it. The easiest...
ASP.Net: ViewState – decode
In , ViewState is used to store the state of your web page controls between post backs. You can see this value by viewing the html source code and...
Supervisord: Docker : INFO reaped unknown pid
You use supervisord to manage your docker startup services, then you see a bunch of errors like this The fix is to update your / , add or change...