Skip to content

Quick Nuke RLM parsing

py
import requests
from bs4 import BeautifulSoup

rlm_current_nuke_r = r"http://<RLM_IP>:4102/goform/rlmstat_lic_process"
rlm_remove_lic = r"http://<RLM_IP>:4102/goform/rlmremove_process"

# get current computer from RLM
response = requests.post(rlm_current_nuke_r, data=data)

soup = BeautifulSoup(response.text, "html.parser")
# Select main table
table_rows = soup.select("body > center > table > tr" )

# remove first row because it's just the table header
if table_rows:
    table_rows.pop(0)
    
data = {}
for tag in table_rows:
    a = tag.select("tr > td")
    # get values of tag
    pid =  a[5].text
    user = a[3].text
    host = a[4].text
    # handle or unique per row, on each refresh
    handle = a[10].select("form > input")[3].attrs['value']

    data[handle]={
        "user": user,
        "host": host.lower(),
        "pid": pid,
        "handle": handle,
    }


# to remove all licences
for d in data.values():
    request_body = {
        "isv": "foundry",
        "handle": d["handle"]
    }
    requests.post(rlm_remove_lic, data=request_body)