=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== orangeassassin-1.0b/oa/message.py-271- orangeassassin-1.0b/oa/message.py:272: def get_all_from_headers_addr(self): orangeassassin-1.0b/oa/message.py-273- all_from_headers = ['From', 'Envelope-Sender', ############################################## orangeassassin-1.0b/oa/plugins/dns_eval.py-136- orangeassassin-1.0b/oa/plugins/dns_eval.py:137: def _check_rbl_addr(self, addresses, rbl_server, subtest=None): orangeassassin-1.0b/oa/plugins/dns_eval.py-138- """Checks the specified addresses on the specified list. ############################################## orangeassassin-1.0b/oa/plugins/dns_eval.py-303- return False orangeassassin-1.0b/oa/plugins/dns_eval.py:304: return self._check_rbl_addr([msg.sender_address], rbl_server, subtest) orangeassassin-1.0b/oa/plugins/dns_eval.py-305- ############################################## orangeassassin-1.0b/oa/plugins/dns_eval.py-322- return False orangeassassin-1.0b/oa/plugins/dns_eval.py:323: return self._check_rbl_addr(from_addrs, rbl_server, subtest) orangeassassin-1.0b/oa/plugins/dns_eval.py-324- ############################################## orangeassassin-1.0b/oa/plugins/free_mail.py-204- orangeassassin-1.0b/oa/plugins/free_mail.py:205: header_emails = msg.get_all_from_headers_addr() orangeassassin-1.0b/oa/plugins/free_mail.py-206- header_emails = sorted(set(header_emails)) ############################################## orangeassassin-1.0b/oa/plugins/relay_country.py-69- return "XX" orangeassassin-1.0b/oa/plugins/relay_country.py:70: response = reader.country_code_by_addr(str(ipaddr)) orangeassassin-1.0b/oa/plugins/relay_country.py-71- if not response: ############################################## orangeassassin-1.0b/oa/plugins/wlbl_eval.py-107- orangeassassin-1.0b/oa/plugins/wlbl_eval.py:108: def escape_addr(self, address): orangeassassin-1.0b/oa/plugins/wlbl_eval.py-109- return re.escape(address).replace(r"\*", ".*").replace(r"\?", ".?") ############################################## orangeassassin-1.0b/oa/plugins/wlbl_eval.py-120- for dom in line[1].split(): orangeassassin-1.0b/oa/plugins/wlbl_eval.py:121: parsed_list[self.escape_addr(line[0])].append(dom) orangeassassin-1.0b/oa/plugins/wlbl_eval.py-122- return parsed_list ############################################## orangeassassin-1.0b/tests/functional/test_plugins/test_header_eval.py-318- orangeassassin-1.0b/tests/functional/test_plugins/test_header_eval.py:319: def test_check_for_forget_hotmail_received_headers_false_addr(self): orangeassassin-1.0b/tests/functional/test_plugins/test_header_eval.py-320- ############################################## orangeassassin-1.0b/tests/functional/test_rules/test_header.py-99- orangeassassin-1.0b/tests/functional/test_rules/test_header.py:100: def test_header_rule_modifiers_match_addr(self): orangeassassin-1.0b/tests/functional/test_rules/test_header.py-101- config = ("header TEST_ADDR_RULE From:addr =~ /@example.com/ \n" ############################################## orangeassassin-1.0b/tests/functional/test_rules/test_header.py-106- orangeassassin-1.0b/tests/functional/test_rules/test_header.py:107: def test_header_rule_modifiers_no_match_addr(self): orangeassassin-1.0b/tests/functional/test_rules/test_header.py-108- config = ("header TEST_ADDR_RULE From:addr =~ /@example.com/ \n" ############################################## orangeassassin-1.0b/tests/unit/test_plugins/test_dns_eval.py-168- orangeassassin-1.0b/tests/unit/test_plugins/test_dns_eval.py:169: def test_check_rbl_from_domain_addr(self): orangeassassin-1.0b/tests/unit/test_plugins/test_dns_eval.py-170- """Test the check_rbl_from_domain eval rule""" ############################################## orangeassassin-1.0b/tests/unit/test_plugins/test_dns_eval.py-228- orangeassassin-1.0b/tests/unit/test_plugins/test_dns_eval.py:229: self.plugin._check_rbl_addr( orangeassassin-1.0b/tests/unit/test_plugins/test_dns_eval.py-230- ['test@example.com'], "example_ser" ############################################## orangeassassin-1.0b/tests/unit/test_plugins/test_header_eval.py-673- orangeassassin-1.0b/tests/unit/test_plugins/test_header_eval.py:674: def test_check_forged_hotmail_hotmail_addr(self): orangeassassin-1.0b/tests/unit/test_plugins/test_header_eval.py-675- self.mock_msg.msg.get.side_effect = [ ############################################## orangeassassin-1.0b/tests/unit/test_plugins/test_relay_country.py-92- orangeassassin-1.0b/tests/unit/test_plugins/test_relay_country.py:93: def country_code_by_addr(self, addr): orangeassassin-1.0b/tests/unit/test_plugins/test_relay_country.py-94- """Mock country_code_by_addr the result is taken from the ############################################## orangeassassin-1.0b/tests/unit/test_plugins/test_wlbl_eval.py-646- orangeassassin-1.0b/tests/unit/test_plugins/test_wlbl_eval.py:647: def test_check_mailfrom_matches_rcvd_no_addr(self): orangeassassin-1.0b/tests/unit/test_plugins/test_wlbl_eval.py-648- self.mock_msg.sender_address = None