REVIEW 5 major objections 5 minor 90 references
An investigation into the performances of the Current state-of-the-art Naive Bayes, Non-Bayesian and Deep Learning Based Classifier for Phishing Detection: A Survey
T0 review · 5 major / 5 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read A survey of recent phishing-detection studies finds Naive Bayes is the weakest URL-based classifier, with Random Forest and Decision Tree on top.
desk verdict A survey with a plausible big-picture conclusion but a central ranking that is not supported by its own meta-analytic method. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The argument is carried by mean-accuracy aggregation: the paper converts each cited study's reported accuracy into a per-classifier average, treating those numbers as commensurable evidence of real-world performance. Around that device it builds a second distinction, controllable versus uncontrollable URL properties, which explains why URL-trained models fail against attacker-crafted URLs and against young legitimate domains. The proposed two-stage pipeline (Random Forest for URL screening, CNN for page content) and the regularized Bayes rule are the paper's forward-looking mechanisms.
What would settle it
Compute mean accuracy for each classifier using only studies that share one public dataset and identical preprocessing, and check whether Naive Bayes remains the lowest and Random Forest the highest; if the order changes or the margin collapses, the paper's ranking is an artifact of averaging incomparable studies.
Extended reading notes
Core claim
The central claim is a performance ranking for URL-properties-based phishing detection, computed as mean accuracy across recent studies: Random Forest (97.1%), Decision Tree (95.2%), CNN (94.2%), and XGBoost (94.1%) are the top four, while Naive Bayes (80.4%), SVM (89.4%), and RNN (91.6%) are the bottom three. The paper further claims the poor showing of Naive Bayes follows from its independence assumption, which rarely holds for URL features, and that both Bayesian and non-Bayesian URL-based models share a vulnerability to 'friendly' URLs that defeat controllable URL properties. It concludes with two remedies: a two-stage model in which Random Forest screens the URL and, if the site looks legitimate, a CNN classifies scraped page content; and a regularized Bayes rule that accounts for feature correlation and distribution shape.
Load-bearing premise
The ranking assumes that accuracy numbers reported in different studies, on different datasets with different preprocessing and class balances, can be averaged as if they measured the same thing.
Editorial extensions
If this is right
- If the ranking holds, teams building URL-only phishing detectors should prefer Random Forest or XGBoost over Naive Bayes as the first-line classifier.
- A two-stage design that checks the URL first and scrapes page content only when the URL looks benign could cut false positives on newly registered legitimate sites.
- Regularizing the Bayes rule to account for correlated features would give Naive Bayes variants a path to competitiveness without abandoning their simplicity.
- URL-only detection is unlikely to be sufficient on its own: attacker-controlled URL properties can be manipulated, so content and image signals are needed.
- Because accuracy alone can be inflated by imbalanced data, the paper's choice of mean accuracy across studies is itself a pragmatic compromise.
Reading between the lines
- If the pooled accuracies are distorted by uneven dataset difficulty, the absolute gap may not transfer to a new deployment even if the ordinal ranking does.
- A natural testable extension is to run all ten classifiers on a single shared phishing URL dataset with the same feature set and class balance; that would separate classifier ability from study-level confounds.
- The paper's controllable-versus-uncontrollable URL distinction suggests a concrete adversary model: an attacker who edits URL length, hostname, and path tokens can evade models trained on those features, which may explain why high laboratory accuracy has not stopped phishing.
- The regularized Bayes proposal points toward a family of correlation-aware Bayes variants; their success would depend on whether the added correlation terms remain cheap enough for real-time URL screening.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper surveys machine learning and deep learning classifiers for phishing detection, grouping methods into Naive Bayes variants, non-Bayesian classifiers, and deep learning models. It aggregates published accuracy results in Tables II and III and computes mean accuracies per classifier. The central empirical claim, stated in Section V, is that Random Forest, Decision Tree, CNN, and XGBoost have the top four mean accuracies (97.1%, 95.2%, 94.2%, 94.1%) for URL-property-based phishing detection, while Naive Bayes, SVM, and RNN have the worst three (80.4%, 89.4%, 91.6%). The paper also proposes a two-stage prediction model (Random Forest followed by CNN) and a regularized variant of the Bayes rule to improve Naive Bayes performance.
Significance. If the ranking were valid, it would provide useful guidance for practitioners selecting classifiers for URL-based phishing detection, and the two-stage proposal would be a plausible direction for future work. The paper also makes a fair point that accuracy alone is not a sufficient evaluation metric and that dataset imbalance, preprocessing differences, and heterogeneous data sources complicate any comparison across studies. However, the central contribution is the ranking in Table III and Section V, and that ranking rests on a pooling methodology that the authors themselves acknowledge, in Section IV, is threatened by the very factors they list. The paper does not provide machine-checked proofs or reproducible code; its empirical content is a hand-aggregated table of published numbers without statistical controls. The survey also usefully catalogs limitations of existing URL-based detectors, especially the vulnerability to so-called friendly URLs and the false-positive problem for newly registered legitimate domains.
major comments (5)
- [Table III and Section V] The central ranking is derived by averaging accuracy values from heterogeneous studies without establishing commensurability. The primary studies differ in dataset source and size (e.g., public UCI data in [61] versus internally generated or non-public data in [53] and [60]), in class balance, in preprocessing (removal vs. replacement of null values), and in the exact task formulation. Section IV explicitly lists imbalance, bias, preprocessing, and author error as accuracy distorters, yet no correction, stratification, or sensitivity analysis is applied before pooling. The resulting means are therefore not a defensible basis for the claim that Random Forest, Decision Tree, CNN, and XGBoost are the top four and Naive Bayes, SVM, and RNN the worst three. A single outlier can change the ordering: for XGBoost, dropping the 70.34 value from [47] raises its mean from about 94.2 to about 96.5, above CNN. No confidence intervals or significance tests are reported, so the precise ordering in Section V is unsupported.
- [Table III, CNN/RNN rows] The claim in Section V is specifically about URL properties-based phishing detection, but several deep learning entries included in the averaged rows are not trained on URL-only features. For example, [19] uses HTML and text obtained from web pages, [86] and [77] involve image or content-based inputs, and [8] uses a broader deep-learning pipeline. Mixing feature types invalidates the comparison across classifier categories, because the performance differences may reflect input modalities rather than the classifier family. The table would need to separate URL-only studies from content/image-based studies before any classifier ranking can be drawn.
- [Section IV and Section V, two-stage proposal] The proposed two-stage model (Random Forest on URL properties, then CNN on web-scraped content) is motivated by the aggregated ranking, so it inherits the pooling problem. The choice of Random Forest for the first stage is justified by a mean accuracy of 97% from Table III, but if that mean is not commensurable, the design rationale is not established. The proposal is also not evaluated in any experiment; it is a suggestion rather than a validated contribution. The paper would need at least a small pilot evaluation or a clearly stated feasibility argument to make this a load-bearing part of the survey.
- [Section IV, mean accuracy rationale] The text says mean accuracy was adopted 'to counter the effect of' uncertainty in dataset quality, imbalance, preprocessing, and author error. Averaging does not counter these effects; it merely propagates them into a single number and then treats dissimilar numbers as comparable. The manuscript contains its own admission that accuracy alone is not a perfect metric and that imbalance can 'tilt the accuracy in favor or against a classifier.' This is an internal inconsistency: the acknowledged limitations are not addressed by the chosen methodology, and no alternative analysis (e.g., stratified means by dataset, paired comparisons within studies that report multiple classifiers, or rank-based aggregation) is provided.
- [Table III and references [35], [36]] The survey aggregates values from many independent studies, which is appropriate, but two of the author's own prior papers ([35] on multinomial Naive Bayes and [36] on Bayesian variants for network intrusion detection) are cited in Section III as evidence for the limitations of Naive Bayes. Those papers are not phishing detection studies, so their inclusion in the narrative about phishing performance is not relevant, and their use in the motivation for the proposed regularized Bayes rule gives the proposal a weaker evidential base than the text suggests. This is a minor self-citation concern rather than a circularity problem, but it should be cleaned up.
minor comments (5)
- [Abstract and Introduction] The abstract contains an ungrammatical sentence: 'we also made a series of proposals on how the performance of the under-performing algorithm can improved' should read 'can be improved.' The Introduction also repeats several statistics with obvious inconsistencies (e.g., 4.8 million vs. 1.6 million vs. 4.7 billion dollars in adjacent sentences); these should be reconciled against the cited sources.
- [Figure 1 and reference placeholders] There are unresolved citation placeholders such as ' [ ?]' in the Introduction and ' [ ?]' in the CNN subsection. Figure 1 is said to show phishing statistics from 2013 Q3 to 2022 Q3, but the reader is never told what the plotted quantity is or where the data come from.
- [Section IV, controllable/uncontrollable properties] The classification of URL properties is confusing. The text first lists length of URL, hostname length, average word, and character repetition as controllable by attackers, then later proposes using 'Uncontrollable properties like the length of the URL, length of the hostname, average URL, longest word, character repetition...' The two lists are nearly identical, so the distinction between controllable and uncontrollable properties is not made clear. Please revise the terminology and the example properties so the intended contrast is precise.
- [Section III, SVM motivation] The description of SVM states that two theories must hold before the suitability of SVM can be determined, namely high-dimensional input space and linearly separable categories. This is an oversimplification; SVMs with kernels are specifically designed to handle non-linearly separable data, and the claim as written is misleading. A more standard description would improve the survey's accuracy.
- [Minor typographical and formatting issues] There are numerous typos and formatting errors throughout, including 'Munitinomial Naive Bayes' in the index terms, 'Nave Bayes' in the text, 'UCL' for the UCI dataset in Table I, and inconsistent capitalization (e.g., 'Bayesian' vs. 'Bayes'). The table captions are also inconsistent: Table I is described as 'LIMITATIONS' but contains a mix of summaries and limitations, and Tables II and III use different column layouts for essentially the same information. A careful proofread is needed.
Circularity Check
No significant circularity: the Section V classifier ranking is an arithmetic summary of Table III's independently sourced accuracy values, and the two self-citations are qualitative asides, not load-bearing inputs.
full rationale
The paper's central claim in Section V — that Random Forest, Decision Tree, CNN, and XGBoost have the top four mean accuracies (97.1%, 95.2%, 94.2%, 94.1%) while Naive Bayes, SVM, and RNN have the worst three (80.4%, 89.4%, 91.6%) — is obtained by taking the arithmetic means of the accuracy values listed in Table III. Those values are attributed to 11-15 external studies per classifier, and no row of Table III draws on the authors' own prior papers. The means are descriptive summaries of the collected results, not fitted parameters that are later re-predicted, so no step reduces to its own input. The only self-references, [35] and [36], appear in Sections III-A and IV to support qualitative statements that Multinomial and Gaussian Naive Bayes underperform for NLP and anomaly-detection tasks; those statements are not part of the Table III calculations, and deleting them would leave every mean and the resulting ranking unchanged. The proposed two-stage Random Forest plus CNN model is a design choice motivated by the same survey means, not a prediction validated on those means. The skeptic's concern about pooling heterogeneous datasets, class imbalances, and varying feature types is a validity or correctness critique of the averaging methodology, not an instance of circular derivation. Accordingly, the paper is not circular, and the minor self-citations do not raise the circularity score.
Assumptions & free parameters
assumptions (3)
- domain assumption Reported accuracy scores across the cited studies are commensurable and can be pooled by simple averaging.
- domain assumption The selected papers represent the state of the art for phishing detection over the past five years.
- ad hoc to paper Accuracy alone is an adequate metric for ranking phishing detectors.
Cite this review
Pith. "Pith review of An investigation into the performances of the Current state-of-the-art Naive Bayes, Non-Bayesian and Deep Learning Based Classifier for Phishing Detection: A Survey." pith.science (2026). https://pith.science/paper/GIGVJ33X
@misc{pith2026241116751,
author = {Pith},
title = {Pith review of: An investigation into the performances of the Current state-of-the-art Naive Bayes, Non-Bayesian and Deep Learning Based Classifier for Phishing Detection: A Survey},
year = {2026},
howpublished = {\url{https://pith.science/paper/GIGVJ33X}},
note = {Machine review of arXiv:2411.16751}
}
read the original abstract
Phishing is one of the most effective ways in which cybercriminals get sensitive details such as credentials for online banking, digital wallets, state secrets, and many more from potential victims. They do this by spamming users with malicious URLs with the sole purpose of tricking them into divulging sensitive information which is later used for various cybercrimes. In this research, we did a comprehensive review of current state-of-the-art machine learning and deep learning phishing detection techniques to expose their vulnerabilities and future research direction. For better analysis and observation, we split machine learning techniques into Bayesian, non-Bayesian, and deep learning. We reviewed the most recent advances in Bayesian and non-Bayesian-based classifiers before exploiting their corresponding weaknesses to indicate future research direction. While exploiting weaknesses in both Bayesian and non-Bayesian classifiers, we also compared each performance with a deep learning classifier. For a proper review of deep learning-based classifiers, we looked at Recurrent Neural Networks (RNN), Convolutional Neural Networks (CNN), and Long Short Term Memory Networks (LSTMs). We did an empirical analysis to evaluate the performance of each classifier along with many of the proposed state-of-the-art anti-phishing techniques to identify future research directions, we also made a series of proposals on how the performance of the under-performing algorithm can improved in addition to a two-stage prediction model
Figures
Reference graph
Works this paper leans on
-
[17]
A high-accuracy phishing website detection method based on machine learning
Mahdi Bahaghighat, Majid Ghasemi, and Figen Ozen. A high-accuracy phishing website detection method based on machine learning. Journal of Information Security and Applications , 77:103553, 2023
work page 2023
-
[61]
Comparative study of machine learning algorithms for phishing website detection
Kamal Omari. Comparative study of machine learning algorithms for phishing website detection. International Journal of Advanced Computer Science and Applications , 14(9), 2023
work page 2023
-
[53]
Detect malicious web pages using naive bayesian algorithm to detect cyber threats
Ann Zeki Ablahd Magdacy Jerjes, Adnan Yousif Dawod, and Mo- hammed Fakhrulddin Abdulqader. Detect malicious web pages using naive bayesian algorithm to detect cyber threats. Wireless Personal Communications, pages 1–13, 2023
work page 2023
-
[60]
Phishing detection using machine learning techniques
U Nishitha, Revanth Kandimalla, Reddy M Mourya Vardhan, and U Kumaran. Phishing detection using machine learning techniques. In 2023 3rd Asian Conference on Innovation in Technology (ASIANCON) , pages 1–6. IEEE, 2023
work page 2023
-
[47]
Phishing detection system through hybrid machine learning based on url
Abdul Karim, Mobeen Shahroz, Khabib Mustofa, Samir Brahim Bel- haouari, and S Ramana Kumar Joga. Phishing detection system through hybrid machine learning based on url. IEEE Access, 11:36805–36822, 2023
work page 2023
-
[19]
Eduardo Benavides-Astudillo, Walter Fuertes, Sandra Sanchez-Gordon, German Rodriguez-Galan, Ver ´onica Mart ´ınez-Cepeda, and Daniel Nu˜nez-Agurto. Comparative study of deep learning algorithms in the detection of phishing attacks based on html and text obtained from web pages. In International Conference on Applied Technologies, pages 386–
-
[86]
High accuracy phishing detection based on convolutional neural networks
Suleiman Y Yerima and Mohammed K Alzaylaee. High accuracy phishing detection based on convolutional neural networks. In 2020 3rd International Conference on Computer Applications & Information Security (ICCAIS), pages 1–6. IEEE, 2020
work page 2020
-
[77]
Efficient deep learning techniques for the detection of phishing websites
M Somesha, Alwyn Roshan Pais, Routhu Srinivasa Rao, and Vikram Singh Rathour. Efficient deep learning techniques for the detection of phishing websites. S¯adhan¯a, 45:1–18, 2020
work page 2020
-
[8]
A deep learning-based innovative technique for phishing detection in modern security with uniform resource locators
Eman Abdullah Aldakheel, Mohammed Zakariah, Ghada Abdalaziz Gashgari, Fahdah A Almarshad, and Abdullah IA Alzahrani. A deep learning-based innovative technique for phishing detection in modern security with uniform resource locators. Sensors, 23(9):4403, 2023
2023
-
[35]
Tosin Ige and Sikiru Adewale. Ai powered anti-cyber bullying system using machine learning algorithm of multinomial na ¨ıve bayes and opti- mized linear support vector machine. arXiv preprint arXiv:2207.11897, 2022
work page Pith review arXiv 2022
-
[36]
Performance Comparison and Implementation of Bayesian Variants for Network Intrusion Detection
Tosin Ige and Christopher Kiekintveld. Performance comparison and implementation of bayesian variants for network intrusion detection. arXiv preprint arXiv:2308.11834 , 2023
work page Pith review arXiv 2023
Show all 90 references
-
[1]
Comparative analysis of machine learning classifiers for phishing detection
Mohd Faizal Ab Razak, Mohd Izham Jaya, Ferda Ernawan, Ahmad Firdaus, and Fajar Agung Nugroho. Comparative analysis of machine learning classifiers for phishing detection. In 2022 6th International Conference on Informatics and Computational Sciences (ICICoS), pages 84–88. IEEE, 2022
2022
-
[2]
Web phishing detection using web crawling, cloud infrastructure and deep learning framework
Lozan Mohammed Abdulrahman, Sarkar Hasan Ahmed, Zryan Najat Rashid, Yousif Sufyan Jghef, Teba Mohammed Ghazi, and Umed H Jader. Web phishing detection using web crawling, cloud infrastructure and deep learning framework. Journal of Applied Science and Technol- ogy Trends, 4(01...
2023
-
[3]
Deep learn- ing with convolutional neural network and long short-term memory for phishing detection
Moruf A Adebowale, Khin T Lwin, and M Alamgir Hossain. Deep learn- ing with convolutional neural network and long short-term memory for phishing detection. In 2019 13th International Conference on Software, Knowledge, Information Management and Applications (SKIMA) , pages 1–8...
2019
-
[4]
Intelligent phishing detection scheme using deep learning algorithms
Moruf Akin Adebowale, Khin T Lwin, and Mohammed Alamgir Hossain. Intelligent phishing detection scheme using deep learning algorithms. Journal of Enterprise Information Management , 36(3):747– 766, 2023
2023
-
[5]
Encoder-decoder based long short-term memory (lstm) model for video captioning
Sikiru Adewale, Tosin Ige, and Bolanle Hafiz Matti. Encoder-decoder based long short-term memory (lstm) model for video captioning. arXiv preprint arXiv:2401.02052, 2023
2023 arXiv
-
[6]
Ofm- cdm/irf: A phishing website detection model based on optimized fuzzy multi-criteria decision-making and improved random forest
Md Abdullah Al Ahasan, Mengjun Hu, and Nashid Shahriar. Ofm- cdm/irf: A phishing website detection model based on optimized fuzzy multi-criteria decision-making and improved random forest. In 2023 Silicon Valley Cybersecurity Conference (SVCC) , pages 1–8. IEEE, 2023
2023
-
[7]
Email phishing detec- tion based on na ¨ıve bayes, random forests, and svm classifications: A comparative study
Mustafa Al Fayoumi, Ammar Odeh, Ismail Keshta, Abobakr Aboshgifa, Tareq AlHajahjeh, and Rana Abdulraheem. Email phishing detec- tion based on na ¨ıve bayes, random forests, and svm classifications: A comparative study. In 2022 IEEE 12th Annual Computing and Communication Works...
2022
-
[9]
An effective phishing detection model based on character level convolutional neural network from url
Ali Aljofey, Qingshan Jiang, Qiang Qu, Mingqing Huang, and Jean- Pierre Niyigena. An effective phishing detection model based on character level convolutional neural network from url. Electronics, 9(9):1514, September 2020
2020
-
[10]
An effective detection approach for phishing websites using url and html features
Ali Aljofey, Qingshan Jiang, Abdur Rasool, Hui Chen, Wenyin Liu, Qiang Qu, and Yang Wang. An effective detection approach for phishing websites using url and html features. Scientific Reports , 12(1):8842, 2022
2022
-
[11]
Phishing detection based on machine learning and feature selection methods
Mohammad Almseidin, AlMaha Abu Zuraiq, Mouhammd Al- Kasassbeh, and Nidal Alnidami. Phishing detection based on machine learning and feature selection methods. 2019
2019
-
[12]
Detecting phishing domains using machine learning
Shouq Alnemari and Majid Alshammari. Detecting phishing domains using machine learning. Applied Sciences, 13(8):4649, 2023
2023
-
[13]
Detecting phishing websites using machine learning
Safa Alrefaai, Ghina ¨Ozdemir, and Afnan Mohamed. Detecting phishing websites using machine learning. In 2022 International Congress on Human-Computer Interaction, Optimization and Robotic Applications (HORA), pages 1–6. IEEE, 2022
2022
-
[14]
A new hybrid deep learning-based phishing detection system using mcs-dnn classifier
J Anitha and M Kalaiarasu. A new hybrid deep learning-based phishing detection system using mcs-dnn classifier. Neural Computing and Applications, pages 1–16, 2022
2022
-
[15]
Efficient phishing detection and prevention using support vector machine (svm) algorithm
M Arivukarasi, A Manju, R Kaladevi, Shanmugasundaram Hariharan, M Mahasree, and Andraju Bhanu Prasad. Efficient phishing detection and prevention using support vector machine (svm) algorithm. In 2023 IEEE 12th International Conference on Communication Systems and Network Techn...
2023
-
[16]
K-nearest neighbor based url identification model for phishing attack detection
Tsehay Admassu Assegie. K-nearest neighbor based url identification model for phishing attack detection. Indian Journal of Artificial Intelligence and Neural Networking , 1:18–21, 2021
2021
-
[18]
Classifying phishing urls using recurrent neural networks
Alejandro Correa Bahnsen, Eduardo Contreras Bohorquez, Sergio Vil- legas, Javier Vargas, and Fabio A Gonz ´alez. Classifying phishing urls using recurrent neural networks. In 2017 APWG symposium on electronic crime research (eCrime) , pages 1–8. IEEE, 2017
2017
-
[20]
K-nearest neighbour classifier for url-based phishing detection mech- anism
Subba Reddy Borra, B Gayathri, B Rekha, B Akshitha, and B Hafeeza. K-nearest neighbour classifier for url-based phishing detection mech- anism. Turkish Journal of Computer and Mathematics Education (TURCOMAT), 14(03):34–40, 2023
2023
-
[21]
Analysis of phishing emails
Ladislav Burita, Petr Matoulek, Kamil Halouzka, and Pavel Kozak. Analysis of phishing emails. AIMS Electronics and Electrical Engi- neering, 5(1):93–116, 2021
2021
-
[22]
Phishwish: a stateless phishing filter using minimal rules
Debra L Cook, Vijay K Gurbani, and Michael Daniluk. Phishwish: a stateless phishing filter using minimal rules. In Financial Cryptography and Data Security: 12th International Conference, FC 2008, Cozumel, Mexico, January 28-31, 2008. Revised Selected Papers 12 , pages 182–
2008
-
[23]
Edgar and David O
Thomas W. Edgar and David O. Manz. Chapter 4 - exploratory study. In Thomas W. Edgar and David O. Manz, editors, Research Methods for Cyber Security , pages 95–130. Syngress, 2017
2017
-
[24]
Visualizing and interpreting rnn models in url- based phishing detection
Tao Feng and Chuan Yue. Visualizing and interpreting rnn models in url- based phishing detection. In Proceedings of the 25th ACM Symposium on Access Control Models and Technologies , pages 13–24, 2020
2020
-
[25]
Phishing websites detection by using optimized stacking ensemble model
Z Ghaleb Al-Mekhlafi, B Abdulkarem Mohammed, Mohammed Al- Sarem, Faisal Saeed, Tawfik Al-Hadhrami, Mohammad T Alshammari, Abdulrahman Alreshidi, and T Sarheed Alshammari. Phishing websites detection by using optimized stacking ensemble model. Computer Systems Science and Engin...
2022
-
[26]
An ensemble method for phishing websites detection based on xgboost
Jiaqi Gu and Hui Xu. An ensemble method for phishing websites detection based on xgboost. In 2022 14th international conference on computer research and development (ICCRD) , pages 214–219. IEEE, 2022
2022
-
[27]
From feature engineering and topics models to enhanced prediction rates in phishing detection
Eder S Gualberto, Rafael T De Sousa, P De B Thiago, Jo ˜ao Paulo CL Da Costa, and Cl ´audio G Duque. From feature engineering and topics models to enhanced prediction rates in phishing detection. Ieee Access, 8:76368–76385, 2020
2020
-
[28]
Improving text classification with weighted word embeddings via a multi-channel textcnn model
Bao Guo, Chunxia Zhang, Junmin Liu, and Xiaoyi Ma. Improving text classification with weighted word embeddings via a multi-channel textcnn model. Neurocomputing, 363:366–374, 2019
2019
-
[29]
Catching the phish: Detecting phishing attacks using recurrent neural networks (rnns)
Luk ´aˇs Halga ˇs, Ioannis Agrafiotis, and Jason RC Nurse. Catching the phish: Detecting phishing attacks using recurrent neural networks (rnns). In Information Security Applications: 20th International Conference, WISA 2019, Jeju Island, South Korea, August 21–24, 2019, Revis...
2019
-
[30]
Visual similarity- based phishing detection scheme using image and css with target website finder
Shuichiro Haruta, Hiromu Asahina, and Iwao Sasase. Visual similarity- based phishing detection scheme using image and css with target website finder. In GLOBECOM 2017-2017 IEEE Global Communications Conference, pages 1–6. IEEE, 2017
2017
-
[31]
Lightweight url- based phishing detection using natural language processing transformers for mobile devices
Katherine Haynes, Hossein Shirazi, and Indrakshi Ray. Lightweight url- based phishing detection using natural language processing transformers for mobile devices. Procedia Computer Science , 191:127–134, 2021
2021
-
[32]
Deep learning based phishing e-mail detection
M Hiransha, Nidhin A Unnithan, R Vinayakumar, K Soman, and ADR Verma. Deep learning based phishing e-mail detection. In Proc. 1st AntiPhishing Shared Pilot 4th ACM Int. Workshop Secur. Privacy Anal.(IWSPA), pages 1–5. Tempe, AZ, USA, 2018
2018
-
[33]
Development of anti-phishing browser based on random forest and rule of extraction framework
Mohith Gowda HR, Adithya MV , et al. Development of anti-phishing browser based on random forest and rule of extraction framework. Cybersecurity, 3(1):1–14, 2020
2020
-
[34]
Phishing url detection via cnn and attention-based hierarchical rnn
Yongjie Huang, Qiping Yang, Jinghui Qin, and Wushao Wen. Phishing url detection via cnn and attention-based hierarchical rnn. In 2019 18th IEEE International Conference On Trust, Security And Privacy In Computing And Communications/13th IEEE International Conference On Big Dat...
2019
-
[37]
Deep learning- based speech and vision synthesis to improve phishing attack de- tection through a multi-layer adaptive framework
Tosin Ige, Christopher Kiekintveld, and Aritran Piplai. Deep learning- based speech and vision synthesis to improve phishing attack de- tection through a multi-layer adaptive framework. arXiv preprint arXiv:2402.17249, 2024
2024 arXiv
-
[38]
An investi- gation into the performances of the state-of-the-art machine learning approaches for various cyber-attack detection: A survey
Tosin Ige, Christophet Kiekintveld, and Aritran Piplai. An investi- gation into the performances of the state-of-the-art machine learning approaches for various cyber-attack detection: A survey. In 2024 IEEE International Conference on Electro Information Technology (eIT), pag...
2024
-
[39]
Enhancing border security and countering terrorism through computer vision: A field of artificial intelligence
Tosin Ige, Abosede Kolade, and Olukunle Kolade. Enhancing border security and countering terrorism through computer vision: A field of artificial intelligence. In Proceedings of the Computational Methods in Systems and Software , pages 656–666. Springer, 2022
2022
-
[40]
Adversarial sampling for fairness testing in deep neural network
Tosin Ige, William Marfo, Justin Tonkinson, Sikiru Adewale, and Bolanle Hafiz Matti. Adversarial sampling for fairness testing in deep neural network. arXiv preprint arXiv:2303.02874 , 2023
2023 arXiv
-
[41]
Implementation of data mining on a secure cloud computing over a web api using supervised machine learning algorithm
Tosin Ige and Adewale Sikiru. Implementation of data mining on a secure cloud computing over a web api using supervised machine learning algorithm. In Computer Science On-line Conference , pages 203–210. Springer, 2022
2022
-
[42]
Seperation of phishing emails using probabilistic classifiers
R Ishwarya, S Muthumani, Siva Sharma Karthick PG, and S Suriya. Seperation of phishing emails using probabilistic classifiers. In 2023 9th International Conference on Advanced Computing and Communication Systems (ICACCS), volume 1, pages 1676–1679. IEEE, 2023
2023
-
[43]
A novel approach to protect against phishing attacks at client side using auto-updated white-list
Ankit Kumar Jain and Brij B Gupta. A novel approach to protect against phishing attacks at client side using auto-updated white-list. EURASIP Journal on Information Security , 2016:1–11, 2016
2016
-
[44]
A machine learning based approach for phishing detection using hyperlinks information
Ankit Kumar Jain and Brij B Gupta. A machine learning based approach for phishing detection using hyperlinks information. Journal of Ambient Intelligence and Humanized Computing , 10:2015–2028, 2019
2015
-
[45]
Appropriate detection of ham and spam emails using machine learning algorithm
T Jaya, R Kanyaharini, and Bandi Navaneesh. Appropriate detection of ham and spam emails using machine learning algorithm. In 2023 International Conference on Advances in Computing, Communication and Applied Informatics (ACCAI) , pages 1–5. IEEE, 2023
2023
-
[46]
Performance comparison of classifiers on reduced phishing website dataset
Murat Karabatak and Twana Mustafa. Performance comparison of classifiers on reduced phishing website dataset. In 2018 6th International Symposium on Digital Forensic and Security (ISDFS), pages 1–5. IEEE, 2018
2018
-
[48]
A comparative study of machine learning techniques for phishing website detection
Mohammad Farhan Khan, Rohit Kumar Tiwari, Sushil Kumar Saroj, and Tripti Tripathi. A comparative study of machine learning techniques for phishing website detection. In Role of Data-Intensive Distributed Com- puting Systems in Designing Data Solutions , pages 97–109. Springer, 2023
2023
-
[49]
Phishing attacks and websites classification using machine learning and multiple datasets (a comparative analysis)
Sohail Ahmed Khan, Wasiq Khan, and Abir Hussain. Phishing attacks and websites classification using machine learning and multiple datasets (a comparative analysis). In Intelligent Computing Methodologies: 16th International Conference, ICIC 2020, Bari, Italy, October 2–5, 2020...
2020
-
[50]
Detection of phishing websites by using machine learning-based url analysis
Mehmet Korkmaz, Ozgur Koray Sahingoz, and Banu Diri. Detection of phishing websites by using machine learning-based url analysis. In 2020 11th International Conference on Computing, Communication and Networking Technologies (ICCCNT), pages 1–7. IEEE, 2020
2020
-
[51]
Machine learning-based spam detection using na ¨ıve bayes classifier in comparison with logistic re- gression for improving accuracy
K Varun Kumar and M Ramamoorthy. Machine learning-based spam detection using na ¨ıve bayes classifier in comparison with logistic re- gression for improving accuracy. Journal of Pharmaceutical Negative Results, pages 548–554, 2022
2022
-
[52]
A stacking model using url and html features for phishing webpage detection
Yukun Li, Zhenguo Yang, Xu Chen, Huaping Yuan, and Wenyin Liu. A stacking model using url and html features for phishing webpage detection. Future Generation Computer Systems , 94:27–39, 2019
2019
-
[54]
Website phishing detection using machine learning classification algorithms
Mukta Mithra Raj and J Angel Arul Jothi. Website phishing detection using machine learning classification algorithms. In International Conference on Applied Informatics , pages 219–233. Springer, 2022
2022
-
[55]
Ransomware attacks and scenarios: Cost factors and loss of reputation
Dietmar PF M ¨oller. Ransomware attacks and scenarios: Cost factors and loss of reputation. In Guide to Cybersecurity in Digital Transformation: Trends, Methods, Technologies, Applications and Best Practices , pages 273–303. Springer, 2023
2023
-
[56]
Phish- ing url classification analysis using ann algorithm
Krishna Mridha, Jahid Hasan, D Saravanan, and Ankush Ghosh. Phish- ing url classification analysis using ann algorithm. In 2021 IEEE 4th International Conference on Computing, Power and Communication Technologies (GUCON), pages 1–7. IEEE, 2021
2021
-
[57]
Phishing site detection classification model using machine learning approach
Yohan Muliono, Muhammad Amar Ma’ruf, and Zakiyyah Mutiara Azzahra. Phishing site detection classification model using machine learning approach. Engineering, MAthematics and Computer Science (EMACS) Journal, 5(2):63–67, 2023
2023
-
[58]
A survey on phishing emails detection techniques
Amgad Muneer, Rao Faizan Ali, Abdo Ali Al-Sharai, and Suliman Mo- hamed Fati. A survey on phishing emails detection techniques. In 2021 International Conference on Innovative Computing (ICIC) , pages 1–6. IEEE, 2021
2021
-
[59]
Feature selection for phishing website by using naive bayes classifier
Twana Mustafa and Murat Karabatak. Feature selection for phishing website by using naive bayes classifier. In 2023 11th International Symposium on Digital Forensics and Security (ISDFS), pages 1–4. IEEE, 2023
2023
-
[62]
Content based phishing detection with machine learning
U ˘gur Ozker and Ozgur Koray Sahingoz. Content based phishing detection with machine learning. In 2020 International Conference on Electrical Engineering (ICEE) , pages 1–6. IEEE, 2020
2020
-
[63]
Phish-sight: a new approach for phishing detection using dominant colors on web pages and machine learning
Pankaj Pandey and Nishchol Mishra. Phish-sight: a new approach for phishing detection using dominant colors on web pages and machine learning. International Journal of Information Security , pages 1–11, 2023
2023
-
[64]
Phishing site detection analysis using artificial neural network
M E Pratiwi, T A Lorosae, and F W Wibowo. Phishing site detection analysis using artificial neural network. Journal of Physics: Conference Series, 1140(1):012048, dec 2018
2018
-
[65]
Improved intrusion detection system that uses machine learning techniques to proactively defend ddos attack
T Rajendran, E Abishekraj, and U Dhanush. Improved intrusion detection system that uses machine learning techniques to proactively defend ddos attack. In ITM Web of Conferences, volume 56, page 05011. EDP Sciences, 2023
2023
-
[66]
A comprehensive survey of auto- mated website phishing detection techniques: A perspective of artificial intelligence and human behaviors
C Rajeswary and M Thirumaran. A comprehensive survey of auto- mated website phishing detection techniques: A perspective of artificial intelligence and human behaviors. In 2023 International Conference on Sustainable Computing and Data Communication Systems (ICSCDS) , pages 42...
2023
-
[67]
Classification of phishing websites using machine learning models
Santhosh Raminedi, Trilok Nath Pandey, Venkat Amith Woonna, Slet- zer Concy Mascarenhas, and Arjun Bharani. Classification of phishing websites using machine learning models. In 2023 3rd International conference on Artificial Intelligence and Signal Processing (AISP), pages 1–...
2023
-
[68]
Enhanced website phishing detection based on the cyber kill chain and cloud computing
Saba Hussein Rashid and Wisam Dawood Abdullah. Enhanced website phishing detection based on the cyber kill chain and cloud computing. Indonesian Journal of Electrical Engineering and Computer Science , 32(1):517–529, 2023
2023
-
[69]
Webpages classification with phishing content using naive bayes algorithm
Jorge Enrique Rodr ´ıguez Rodr´ıguez, V´ıctor Hugo Medina Garc ´ıa, and Nelson P ´erez Castillo. Webpages classification with phishing content using naive bayes algorithm. In Knowledge Management in Organiza- tions: 14th International Conference, KMO 2019, Zamora, Spain, July ...
2019
-
[70]
Detecting phishing attacks using feature importance-based machine learning approach
Belyse Rugangazi and George Okeyo. Detecting phishing attacks using feature importance-based machine learning approach. In 2023 IEEE AFRICON, pages 1–6. IEEE, 2023
2023
-
[71]
Phishing website detection using xgboost and catboost classifiers
Kishwar Sadaf. Phishing website detection using xgboost and catboost classifiers. In 2023 International Conference on Smart Computing and Application (ICSCA), pages 1–6. IEEE, 2023
2023
-
[72]
Machine learning based phishing detection from urls
Ozgur Koray Sahingoz, Ebubekir Buber, Onder Demir, and Banu Diri. Machine learning based phishing detection from urls. Expert Systems with Applications, 117:345–357, 2019
2019
-
[73]
Phishing website detection from urls using classical machine learning ann model
Said Salloum, Tarek Gaber, Sunil Vadera, and Khaled Shaalan. Phishing website detection from urls using classical machine learning ann model. In International Conference on Security and Privacy in Communication Systems, pages 509–523. Springer, 2021
2021
-
[74]
Feature selection for phishing website classification
Shafaizal Shabudin, Nor Samsiah Sani, Khairul Akram Zainal Ariffin, and Mohd Aliff. Feature selection for phishing website classification. International Journal of Advanced Computer Science and Applications , 11(4), 2020
2020
-
[75]
Phishing detection using random forest, svm and neural network with backpropagation
Smita Sindhu, Sunil Parameshwar Patil, Arya Sreevalsan, Faiz Rahman, and Ms Saritha AN. Phishing detection using random forest, svm and neural network with backpropagation. In 2020 International Confer- ence on Smart Technologies in Computing, Electrical and Electronics (ICSTC...
2020
-
[76]
Supervised and unsupervised learning techniques utilizing malware datasets
Daryle Smith, Sajad Khorsandroo, and Kaushik Roy. Supervised and unsupervised learning techniques utilizing malware datasets. In 2023 IEEE 2nd International Conference on AI in Cybersecurity (ICAIC) , pages 1–7. IEEE, 2023
2023
-
[78]
Comparison of simple feedforward neural network, recurrent neural network and ensemble neural networks in phishing detection
Gan Kim Soon, Chin Kim On, Nordaliela Mohd Rusli, Tan Soo Fun, Rayner Alfred, and Tan Tse Guan. Comparison of simple feedforward neural network, recurrent neural network and ensemble neural networks in phishing detection. In Journal of Physics: Conference Series, volume 1502, ...
2020
-
[79]
Phishing website detection using machine learn- ing: Model development and django integration
Seun Mayowa Sunday. Phishing website detection using machine learn- ing: Model development and django integration. Journal of Electrical Engineering, Electronics, Control and Computer Science , 9(3):39–54, 2023
2023
-
[80]
A comparative analysis of machine learning- based website phishing detection using url information
Md Milon Uddin, Kazi Arfatul Islam, Muntasir Mamun, Vivek Kumar Tiwari, and Jounsup Park. A comparative analysis of machine learning- based website phishing detection using url information. In 2022 5th International Conference on Pattern Recognition and Artificial Intelli- gen...
2022
-
[81]
Rambabu Vallepu and Malathi Karunakaran. An innovative method to improve performance analysis in classification with accuracy of phishing websites using random forest algorithm by comparing with support vector machine algorithm. In AIP Conference Proceedings , volume
-
[82]
Non-naive bayesian classifiers for classification problems with continuous attributes
Xi-Zhao Wang, Yu-Lin He, and Debby D Wang. Non-naive bayesian classifiers for classification problems with continuous attributes. IEEE transactions on cybernetics , 44(1):21–39, 2013
2013
-
[83]
A survey of phishing detection: from an intelligent coun- termeasures view
Yifei Wang. A survey of phishing detection: from an intelligent coun- termeasures view. In 2022 IEEE Conference on Telecommunications, Optics and Computer Science (TOCS) , pages 761–769. IEEE, 2022
2022
-
[84]
A combination of textcnn model and bayesian classifier for microblog sentiment analysis
Zhanfeng Wang, Lisha Yao, Xiaoyu Shao, and Honghai Wang. A combination of textcnn model and bayesian classifier for microblog sentiment analysis. Journal of Combinatorial Optimization , 45(4):109, 2023
2023
-
[85]
Prediction of phishing sites in network using naive bayes compared over random forest with improved accu- racy
Palla Yaswanth and V Nagaraju. Prediction of phishing sites in network using naive bayes compared over random forest with improved accu- racy. In 2023 Eighth International Conference on Science Technology Engineering and Mathematics (ICONSTEM) , pages 1–5. IEEE, 2023
2023
-
[87]
Research on phishing webpage detection technology based on cnn-bilstm algorithm
Qiao Zhang, Youjun Bu, Bo Chen, Surong Zhang, and Xiangyu Lu. Research on phishing webpage detection technology based on cnn-bilstm algorithm. Journal of Physics: Conference Series , 1738(1):012131, jan 2021
2021
-
[88]
Dtof-ann: an artificial neural network phishing detection model based on decision tree and optimal features
Erzhou Zhu, Yinyin Ju, Zhile Chen, Feng Liu, and Xianyong Fang. Dtof-ann: an artificial neural network phishing detection model based on decision tree and optimal features. Applied Soft Computing, 95:106505, 2020
2020
-
[89]
Phishing or not phishing? a survey on the detection of phishing websites
Rasha Zieni, Luisa Massari, and Maria Carla Calzarossa. Phishing or not phishing? a survey on the detection of phishing websites. IEEE Access, 11:18499–18519, 2023
2023
-
[2655]
AIP Publishing, 2023
2023
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.