MCPcopy Create free account
hub / github.com/sqlmapproject/sqlmap / unknown_starttag

Method unknown_starttag

lib/utils/sgmllib.py:506–514  ·  view source on GitHub ↗
(self, tag, attrs)

Source from the content-addressed store, hash-verified

504 print('comment:', r)
505
506 def unknown_starttag(self, tag, attrs):
507 self.flush()
508 if not attrs:
509 print('start tag: <' + tag + '>')
510 else:
511 print('start tag: <' + tag, end=' ')
512 for name, value in attrs:
513 print(name + '=' + '"' + value + '"', end=' ')
514 print('>')
515
516 def unknown_endtag(self, tag):
517 self.flush()

Callers

nothing calls this directly

Calls 1

flushMethod · 0.95

Tested by

no test coverage detected