> ## Content Index
> Fetch the complete content index at: https://kudithipudi.org/llms.txt
> Use this file to discover other available public pages before exploring further.

# Update 1 : Application Development : domainScan
- URL: https://kudithipudi.org/update-1-application-development-domainscan/
- Published: 2014-02-14T08:07:31.000Z
- Updated: 2014-02-14T08:07:31.000Z
- Description: Following up from my post earlier this month regarding building a security application that scans publicly available data (Google) and report on potential information leakage from...
- Author: admin
- Tags: Programming, security, Technology, Uncategorized, #wp, #wp-post, #Import 2026-08-23 02:32

Following up from my post earlier this month regarding building a security application that scans publicly available data (Google) and report on potential information leakage from a hostname.

I created a [repo](https://github.com/kudithipudi/security-domainscan?ref=kudithipudi.org) on github if anyone is interested in contributing. First thing any good developer does is to check code in early and often :). The repo is at [https://github.com/kudithipudi/security-domainscan](https://github.com/kudithipudi/security-domainscan?ref=kudithipudi.org)

Here’s the sudo code I put together as a framework to build on

```

functions
 read_file(file)
 open file;
 for each line
 process_line(hostname)
 process_line(hostname)
 search_google(hostname)
 write to log
 search_google (hostname)
 connect to google api
 get results for hostname
 return number of results
main
 read_file(input)

```