(length)
| 25 | def rand_text_alpha_lower(length): |
| 26 | return ''.join(random.choice(string.ascii_lowercase) for _ in range(length)) |
| 27 | def rand_text_alpha(length): |
| 28 | return ''.join(random.choice(string.ascii_letters) for _ in range(length)) |
| 29 | |
| 30 | plugin_guid = '-'.join([rand_text_hex(a) for a in [8, 4, 4, 4, 12]]) |
| 31 | payload_ashx = f"{rand_text_alpha_lower(8)}.ashx" |
no outgoing calls
no test coverage detected