Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to hide codeigniter footprint area from online checkers?

is this possible to remove codeigniter footprint area from online tools like wappalyzer.com or builtwith.com and make the sensitive project technologies undetectable?

like image 708
Morteza Mousavi Avatar asked Sep 11 '25 20:09

Morteza Mousavi


1 Answers

Yes, it's possible.

First, you need to know how it's being detected. Have a look at Wappalyzer code:
https://github.com/AliasIO/Wappalyzer/blob/master/src/apps.json#L1359

CodeIgniter's presence is being detected by its possible cookie names: exp_last_activity, exp_tracker, ci_session or ci_csrf_token. Or possible input name ci_csrf_token in the HTML, or precense of CodeIgniter.png icon.

You can easily remove such implications from your CodeIgniter app by modifying config files or views. And Wappalyzer won't recognize it anymore.

Don't know if BuiltWith has some opensource code to look at, but I'm pretty sure it uses such kinda implications to detect CI apps.

like image 53
sepehr Avatar answered Sep 13 '25 09:09

sepehr